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 |
after installatio of ORACLE 8i, work properly, but after restarting the system, it throw an error ORA 01034: ORACLE not availble
What is a select query statement in oracle?
How to define an anonymous block?
What is the dynamic sql in oracle?
what is cartesian product?
What is a SNAPSHOT ?
How to define a data field as not null?
What would you do if a database crashes in production?
select trunc(round(156.00,-1),-1) from dual;
what is a Nested Loop join?
What is a cluster Key ?
What is an oracle user account?