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 an oracle table?
What is a lookup table in oracle?
How to change system global area (sga) in oracle?
How to change program global area (pga) in oracle?
State the difference along with examples between Oracle 9i, Oracle 10g and Oracle 11i.
How to bring a tablespace online?
What is a shared pool?
What is instant client oracle?
What is a system tablespace?
what happened to the global index when I truncate the data in one of the partition?
How to use null as conditions in oracle?
What is a cursor and what are the steps need to be taken?