How to find the date and time of last updated table?
Answers were Sorted based on User's Feedback
Answer / payal nath
We can determine the last time a user table was altered
using the below query.
SELECT name, create_date, modify_date
FROM sys.tables
ORDER BY modify_date DESC
The modify_date column is updated whenever a column is
added or altered for the table.
It is also updated if the clustered index is changed.
Is This Answer Correct ? | 21 Yes | 15 No |
Answer / ramendra kumar
TO FIND THE NEW DATE ABOUT LAST RECENT CONFIGURE TABLE
SYNTEX WE BRING IN USE TO SEE THE DATE IS
GETDATE()
Is This Answer Correct ? | 4 Yes | 13 No |
What is the difference between Temporary table variable and a Table variable? Or Which Table variable I should use inside Stored procedure?
3 Answers Microsoft, TCS, Techastrum,
Explain primary key, foreign key and unique key?
What are all new concepts in SQL Server 2008? That is Exactly Difference between 2005 to 2008
Determine how to use the inserted and deleted pseudo tables?
what is the difference between group and having give an example with query and sample output
What are the differences between left join and inner join in sql server?
I am having table Title with TITLE id,Author ID, Publiser ID , table AUTHOR with Author ID, Author Name, table PUBLISER with Pub ID, Pub name Here hot to find out the publiser id who have relesed the books of patriticular author?
What is check constraint in sql server?
diffrence between function and procedure
Can we use trigger new in before insert?
Can we shrink data file in sql server?
What is sql server used for?