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 a user role in oracle?
Tab A A B ------ 1 A 2 B 3 C Tab B A B ----- 4 D 5 E 6 F Generate the value into B table from A table. Only table A has the value. Write the SQL query to get B table value.
can a view be updated?
What is the difference between sharding and replication?
What is max rowid in oracle?
Can objects of the same schema reside in different tablespace?
What is a read write transaction in oracle?
Explain the use of rows option in exp command.
Typically, where is the conventional directory structure chosen for Oracle binaries to reside?
Name the three major set of files on disk that compose a database in Oracle?
What is save point in oracle database?
What are the differences between blob and clob in oracle?