How do I view previous queries in SQL Server 2000 database
|
|
|||
|
|
|
You can't, unless you were monitoring and logging them via Profiler. Although if you have something like Log Explorer, you can browse the transaction log and see who updated things. This won't show previously-run SQL, though. |
||
|
|
|
|
Based on this post, it looks like using DBCC LOG(database_name) in SQL 2000 will get the transaction log information. Didn't get a chance to try this myself though. |
||
|
