About
Pricing
Community
Teams
Start Free Trial
Log in
dotnetpro
asked on
7/23/2008
SQL execution log
Experts is there a way to find out when and by who the last ALTER statement to alter a procedure was run on against a SQL 2000 database ?
.NET Programming
Microsoft SQL Server 2005
Microsoft SQL Server
4
1
Last Comment
chapmandew
8/22/2022 - Mon
momi_sabag
7/23/2008
you can see when was the last alter in information_schema.routine
s
in order to see who did it you will need some tool that can parse the transaction log files
chapmandew
7/23/2008
Log Explorer from Lumigent will do the trick for you to see who altered it.
dotnetpro
7/23/2008
ASKER
I ran this script
select * from information_schema.routine
s where routine_name ='usp_Get_pal_On_Trail'
and it returned a record with creation and modification date from march 08 where as i altered this procedure last evening. Strange!
Experts Exchange is like having an extremely knowledgeable team sitting and waiting for your call. Couldn't do my job half as well as I do without it!
James Murphy
ASKER CERTIFIED SOLUTION
chapmandew
7/23/2008
THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
in order to see who did it you will need some tool that can parse the transaction log files