Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How To Read A Log File 1

Status
Not open for further replies.
Mar 27, 2001
29
0
0
US
Need to find a way to discover when tables where dropped and recreated. This procedure of course creamed our data. Would like to know where these transactions are captured and a way to view some type of date_time stamp. Would it be found in the T-logs or someplace else?

Thanks Again Thanks for all the help ... As Usual

J. Kusch
Chameleon Solutions, Inc.
 
SELECT crdate
FROM sysobjects
WHERE name = <tablename>

tells you when the object was created.

I think you have to create a storedprocedure for the DROP action, which logs the date/time

br
Gerard
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top