• imraanm (9/23/2010)


    Im new at sql...

    We have a sql server 2000. SQL Profiler is not running on this server.

    I need to info on/audit all scripts that were run (successfull or not) that was run for last month (august 2010)on all databases... Somebody/Anybody please assist.

    What were in that script which you have run last month(Aug 2010).

    If you have run any sps,table,view,trigger etc.. script you can use the following query to get

    Select * from sysobjects where month(crdate)=8 and YEAR(crdate)=2010

    If you have inserted any datas in the tables it is not possible unless you have datetime column in the table you inserted.

    Thanks

    Parthi

    Thanks
    Parthi