How does one audit select statements in terms of what the user sees.
For instance if I run the following scripts
–Begin Script
declare @id int
set @id = 1
select * from testtable where id = @id
–End Script
The compliance Manager only shows the following
select * from testtable where id = @id
Can’t I get what the @id is?