Jul 30, 2007 #1 toocool4school Programmer Joined Jul 30, 2007 Messages 2 Location US Hi Is there a way I can get the date when a SQL Server database was installed ? Thanks Aswin
Jul 30, 2007 #2 philhege Programmer Joined Feb 1, 2001 Messages 2,114 Location US Look at the mdf's date created column in the data directory. Phil Hegedusich Senior Programmer/Analyst IIMAK http://www.iimak.com----------- Pity the insomniac dyslexic agnostic. He stays up all night, wondering if there really is a dog. Upvote 0 Downvote
Look at the mdf's date created column in the data directory. Phil Hegedusich Senior Programmer/Analyst IIMAK http://www.iimak.com----------- Pity the insomniac dyslexic agnostic. He stays up all night, wondering if there really is a dog.
Jul 30, 2007 Thread starter #3 toocool4school Programmer Joined Jul 30, 2007 Messages 2 Location US Thanks... But is there a way I can extract the information using a query ? Coz I need to automate the process... Upvote 0 Downvote
Thanks... But is there a way I can extract the information using a query ? Coz I need to automate the process...
Jul 30, 2007 #4 philhege Programmer Joined Feb 1, 2001 Messages 2,114 Location US EXEC sp_helpdb 'Database name' It's the 'created' column in the first recordset. Read BOL for more information about administrative procedures like sp_helpdb. Upvote 0 Downvote
EXEC sp_helpdb 'Database name' It's the 'created' column in the first recordset. Read BOL for more information about administrative procedures like sp_helpdb.