Adding Global and Scope Variables

  • There must be an life saving global variables to use per connection like:

    DECLARE @@MYVAR1 BIGINT

    DECLARE @@MYVAR2 VARCHAR(30)

    SET @@MYVAR1 = 123456

    SET @@MYVAR2 = 'Username'

    So we can use it to pass or use them anywhere on the sql server.

    For eg: When a user opens my application, I'll pass @@MYVAR1 and @@MYVAR2.

    Then I'll assign fields default value to @@MYVAR1 and @@MYVAR2 so I never ever need to pass extra params from application to stored procedures or queries to save them in tables. Also this is very useful if you want to do table or record security works.

  • I can see many uses for it. I can also see the two at sign notation carring on the "tradition" of temp tables.

    Conversly would name spaces be better for this?

    @session.myusername = 'Buford H. Pusser'

    @server.panicphone = '202-456-1414'

    Who gets to set server variables? Who gets to change them? When they get changed when do I see the effect of the change?

    ATBCharles Kincaid

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

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