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 |
9. Write a query to list a new column with the difference in temp of the cities Delhi and Mumbai, Mumbai and Jammu and soon. Consider the following table : City_id City Temp. 1 delhi 40 2 Mumbai 35 3 Jammu 32 4 Pune 18
What are the four main query statements?
What are wait types?
What is the purpose of floor function?
What are the database objects? : SQL Server Architecture
What are the methods used to protect against sql injection attack?
Determine when an index is appropriate?
What is intellisense?
What is the difference between windows authentication and sql server authentication
What are the Pre Requisites when you apply Srvice Packs?
Differences between logshipping and mirroring
What are triggers? How do you invoke a trigger on demand?