Viewing 8 posts - 1 through 8 (of 8 total)
Thanks,
Brian this is what i wanted.
Thanks a lot!!!!!!!!!!!!!!!!!!!!!!!!!!
November 11, 2007 at 8:38 am
Mark Thank for you reply
But here once i disable the primary job i want to make sure it has completed execution and then have the sql server agent start the...
November 8, 2007 at 2:37 pm
Did you try question profiler with filtering?
and another option i think you can try would be sysprocess table.
November 2, 2007 at 8:12 am
sorry, its recovery instead of no recovery
-------------------------------------
you can use either of the below two options to get the database into recovery state
RESTORE DATABASE database_name
WITH RECOVERY
OR
RESTORE LOG database_name
WITH RECOVERY
November 2, 2007 at 7:38 am
you can use the following query to get the list of functions and sp that are executed against that
table
SELECT so.name AS FuncProcName, t.TABLE_NAME AS TableName, sc.text AS Definition
...
November 2, 2007 at 7:33 am
you can use either of the below two options to get the database into recovery state
RESTORE DATABASE database_name
WITH NORECOVERY
OR
RESTORE LOG database_name
WITH...
November 2, 2007 at 7:08 am
Viewing 8 posts - 1 through 8 (of 8 total)