Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
vin
Starting Member
26 Posts |
Posted - 2003-03-26 : 00:51:10
|
| Hi,How to get the Date of table creation and store it in a variable.thanks |
|
|
harshal_in
Aged Yak Warrior
633 Posts |
Posted - 2003-03-26 : 00:59:05
|
quote: Hi,How to get the Date of table creation and store it in a variable.thanks
declare @date datetimeselect @date =crdate from sysobjects where name ='table_name'print @dateExpect the UnExpected |
 |
|
|
vin
Starting Member
26 Posts |
Posted - 2003-03-26 : 01:11:25
|
| Thanx harshal |
 |
|
|
|
|
|