How to Dynamically Updating Tables in the procedure...?

  • Hi,

    I have a requirement to pass table name as parameter to a procedure and then based on that the procedure has to update some records in that table.

    Could you please give syntax for the same ?

    Regards

    Ezhilan

  • if the tablename is a parameter, then you must use dynamic sql.

    here's an example:

    --for users who are too lazy to type "SELECT * FROM"

    CREATE procedure sp_show

    --USAGE: sp_show gmact

    @TblName varchar(128)

    --WITH ENCRYPTION

    As

    Begin

    exec('Select * from ' + @TblName)

    End

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • Just in case @TblName has space or another special charachter:

    exec('Select * from ' + QUOTENAME(@TblName) )

    _____________
    Code for TallyGenerator

Viewing 3 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic. Login to reply