How to find the date and time of last updated table?
Answers were Sorted based on User's Feedback
Answer / manish rathore
I got it from net.
Hope it will serve.
select *
from sys.dm_db_index_usage_stats
where object_id = object_id( '<Table_Name>' )
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / aseem k
select b.name, a.analyzetime from tab$ a, obj$ b
where a.obj#=b.obj#
and b.name ='EMP'
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / ajit nayak
SELECT TO_CHAR(LAST_ANALYZED,'DD-MON-YYYY HH12:MI:SS'),COLUMN_NAME
FROM COLS
WHERE TABLE_NAME = 'EMP';
| Is This Answer Correct ? | 0 Yes | 0 No |
What is oracle join syntax?
19. Display all clients whose name begins with the letter J or contains the letter M anywhere or contains E as the third letter.
What is a snapshot in oracle database?
List out the components of logical database structure of oracle database.
Is there a combination of "like" and "in" in sql?
How to get the Installed Oracle Version Information ?
what r routers?
how to find count rows in table without count function?
How to best split csv strings in oracle 9i?
Differnce between view and index
How to use subqueries with the in operator using oracle?
HI ALL, CAN ANYONE TELL ME THE DIFFERENCES BETWEEN SQL CLUSTURS,MSQL CLUSTERS,ORACLE CLUSTERS.......THANKS IN ADVANCE