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 ? | 8 Yes | 3 No |
Determine when to use stored procedure to complete sql server tasks?
What is the architecture of ms sql reporting service?
What is a trigger? Why we need it?
1.What is the deferece between DBMS & RDBMS? 2.How can you trouble shoot? If u will get error while installing sql server? 3.How can u trouble shoot slow running query? 4.how can u trouble log shipping errors? 5.why do we use merge replication instead of T.log replication?
how to rest identity columns in sql server
How to copy data from one table to another table?
How to run queries with sql server management studio express?
if 3 duplicate records in a table,i want to delete 2 duplicate records by keeping 1 duplicate and 1 original as it is,how?
Explain about system stored procedure?
Can we create clustered index on composite key?
How do I uninstall sql server 2014?
How does a profiler work?