How to find the date and time of last updated table?
Answer Posted / 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 |
Post New Answer View All Answers
How do you store pictures in a database?
Can you drop an index associated with a unique or primary key constraint?
What is the usage of merge statement?
What is rowid and rownum in oracle?
What is bulk copy or bcp in oracle?
How to use subqueries with the in operator using oracle?
Difference between inner join vs where ?
How to select some columns from a table in oracle?
An automatic job running via DBMS_JOB has failedKnowing only that its failed, how do you approach troubleshooting this issue?
while i take backup using ibm tsm the following errors occurred: rman-03009 ora-19513 ora-27206 ora-19502 ora-27030 ora-ora19511
How to create an oracle testing table?
How to unlock the sample user account in oracle?
What are the major difference between truncate and delete?
What is a user role in oracle?
Is there any way to find out when one specific table/view/M-view is used last time. i.e. when one specific object is used in any SELECT statement.