Quantcast
Channel: Comments on: Auditing T-SQL Script to find out who made changes to data in a table
Viewing all articles
Browse latest Browse all 8

By: Sudarshan Narasimhan

$
0
0

My bad. Change the following line as follows and it will work
Original: select @NewColValue = select NewColValue from inserted
Change To: select @NewColValue = NewColValue from inserted

I’ve modified the script in the article to reflect this change. Cheers.


Viewing all articles
Browse latest Browse all 8

Trending Articles