|
|
|
Valued Member
      
Group: General Forum Members
Last Login: Yesterday @ 12:00 PM
Points: 69,
Visits: 394
|
|
|
|
|
|
SSC-Addicted
      
Group: General Forum Members
Last Login: Thursday, June 13, 2013 12:42 AM
Points: 406,
Visits: 1,367
|
|
|
|
|
|
SSCarpal Tunnel
       
Group: General Forum Members
Last Login: Today @ 3:43 AM
Points: 4,804,
Visits: 8,091
|
|
Nice article! I've been using this trick for years and I must say it works quite well. The only thing I don't like about it is the need to add custom code to handle the call stack, which is something that has to be done in every single procedure to consider it reliable.
Get your two-cent-answer quickly The Spaghetti DBA
|
|
|
|
|
Grasshopper
      
Group: General Forum Members
Last Login: Wednesday, May 08, 2013 11:26 AM
Points: 12,
Visits: 158
|
|
| In line with that issue, are there tools out there to write Apect Oriented Procedures?
|
|
|
|
|
Mr or Mrs. 500
      
Group: General Forum Members
Last Login: Saturday, June 15, 2013 2:08 PM
Points: 525,
Visits: 624
|
|
Thank you for the article. Could you expalin how this line works:
set context_info @b
Why is there no equal sign?
|
|
|
|
|
Valued Member
      
Group: General Forum Members
Last Login: Yesterday @ 12:00 PM
Points: 69,
Visits: 394
|
|
| 'set context_info' is a statement, different from 'set' in setting a local variable or updating a column, the syntax is without the equal sign
|
|
|
|
|
Valued Member
      
Group: General Forum Members
Last Login: Yesterday @ 12:00 PM
Points: 69,
Visits: 394
|
|
Gianluca Sartori (8/29/2011) Nice article! I've been using this trick for years and I must say it works quite well. The only thing I don't like about it is the need to add custom code to handle the call stack, which is something that has to be done in every single procedure to consider it reliable.
I agree, but so far I couldn't find anything simple enough without writing/reading the data to/from tables.
|
|
|
|
|
Valued Member
      
Group: General Forum Members
Last Login: Yesterday @ 12:00 PM
Points: 69,
Visits: 394
|
|
R.P.Rozema (8/29/2011) Nicely done! I hadn't seen @@procid before and I see, next to this one some great usages for it. So thanks a lot for the pointer.
There is a potential caveat in 2 of your functions: since you're appending integers into the binary string, there can be any sort of "characters" in the string. i.e. you should not use len() on that binary string, instead you should use datalength(). For the rest, good trick to add to our "tool kits"! Agreed, good catch.
|
|
|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Tuesday, December 11, 2012 3:35 AM
Points: 3,
Visits: 27
|
|
Another great use for CONTEXT_INFO is auditing actions. Most web/windows applications create a helper class that manages opening a connection to the database. You can augment this helper class to store all kinds of session information by simply setting that information immediately after opening the connection.
For example. typically, the database connection is created through integrated security based on the app's security context which does *not* include the actual user's login. The user log's in through a login badge (forms based security) to the web app and the web app connects to the database through a common connection string.
I've used the common connection helper in the web app to inject a simple set of the CONTEXT_INFO session variable to store their Forms Based Security login ID. Then, as each stored procedure is called *with* that connection, I can pull the application login from CONTEXT_INFO and store it with the record that was updated or inserted (or even logically deleted). ...Instant Auditing of which user changed the data without the overhead of passing the information with every call.
Essentially, if you create a common connection helper class in your application, you can capture all kinds of session information in Context_INFO and use that information on each subsequent call to the database through that connection. (Think IP Address, Browser info, etc.)
Great post about a little known, but very powerful SQL Server session variable.
|
|
|
|
|
Ten Centuries
      
Group: General Forum Members
Last Login: Today @ 9:16 AM
Points: 1,150,
Visits: 1,859
|
|
Greg Grater (8/29/2011) Another great use for CONTEXT_INFO is auditing actions. Most web/windows applications create a helper class that manages opening a connection to the database. You can augment this helper class to store all kinds of session information by simply setting that information immediately after opening the connection.
For example. typically, the database connection is created through integrated security based on the app's security context which does *not* include the actual user's login. The user log's in through a login badge (forms based security) to the web app and the web app connects to the database through a common connection string.
I've used the common connection helper in the web app to inject a simple set of the CONTEXT_INFO session variable to store their Forms Based Security login ID. Then, as each stored procedure is called *with* that connection, I can pull the application login from CONTEXT_INFO and store it with the record that was updated or inserted (or even logically deleted). ...Instant Auditing of which user changed the data without the overhead of passing the information with every call.
Essentially, if you create a common connection helper class in your application, you can capture all kinds of session information in Context_INFO and use that information on each subsequent call to the database through that connection. (Think IP Address, Browser info, etc.)
Great post about a little known, but very powerful SQL Server session variable.
We also use it for auditing actions. In our case we need to know the ID of the User (actor) performing the operation. Note: being a web application all database interaction is via a single Windows account. Our auditing, limited to deletions, is via a trigger. So the trigger needs a piece of information (UserID) passed into the stored procedure. The UserID is put into the CONTEXT_INFO so that it can be referenced by the trigger. Since the delete can also cause CASCADE deletes, those triggers also need the information. CONTEXT_INFO is the way to go. I wish SQL Server had session scoped properties that can be SET and GET like Oracle. Oracle PL/SQL is much more object-oriented than SQL Server.
(PHB) I think we should build an SQL database. (Dilbert) What color do you want that database? (PHB) I think mauve has the most RAM.
|
|
|
|