Viewing 6 posts - 1 through 6 (of 6 total)
Even though it is a little bit late in the game, I decided to post here what I found around doing my own homework for un-installing Reporting Services 2005. Instead...
January 19, 2011 at 9:02 pm
John,
The easiest way to find out if this is UPDATE or DELETE event is to check rows in inserted table: for UPDATE event there will be rows in both tables...
June 24, 2010 at 10:42 am
Thank you everyone! Sorry, I was not clear on what needs to be audited: any kind of data access (like select statements, data modification) has to be logged. If you...
October 17, 2007 at 4:49 pm
grant VIEW DEFINITION on your_stored_procedure to dev_users
will solve the problem.
October 12, 2007 at 10:17 am
I am using very simple VBscript to achieve the same thing, and attachements are allowed as well after small modification
--------------------------------------
Set oMsg = CreateObject("CDONTS.NewMail")
oMsg.From =...
September 9, 2004 at 2:19 pm
Something like this?
select o.name from sysobjects o
inner join syscomments c
on o.id = c.id
where text like '%table_name%'
Julia
August 10, 2004 at 9:35 am
Viewing 6 posts - 1 through 6 (of 6 total)