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 |
|
binto
Yak Posting Veteran
59 Posts |
Posted - 2010-11-10 : 02:41:48
|
| I have a DB named TEST with 600 tables.I have modified some of the table's design.How can i get the recently design modified table names?please help meThanks & RegardsBinto Thomas |
|
|
vaibhavktiwari83
Aged Yak Warrior
843 Posts |
Posted - 2010-11-10 : 02:52:08
|
| SELECT Name AS [Table Name] FROM sys.tables ORDER BY Modify_Date DESCVaibhav TIf I cant go back, I want to go fast... |
 |
|
|
|
|
|