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 Index Segment ?
What is data type in oracle?
Query to retrieve record for a many to many relationship ?
What is connection pool in oracle?
i want department wise maxmum salary and empolyee name
Explain the use of parfile option in exp command.
What happens to the indexes if a table is recovered?
how many columns can a plsql table have
What is a nested table?
How to connect to the server with user account: sys?
How to open a cursor variable?
How to delete a user account in oracle?