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 |
Typically, where is the conventional directory structure chosen for Oracle binaries to reside?
I am using an Oracle 8i Database my data contains Clob data. I am using toad version 7.6 i am able to get the data in toad but unable to extract the data in excel.when trying to extract the data into the excel the toad error says out of memory. Can any body please help me to extract the data through the same toad version. Thanks in advance
when i run my query on yesterday it is fast but today it is slow why?
How do I find the database name in oracle?
What is E-R diagram ?
2 Answers CGI, Keane India Ltd,
16. Display the order number, order line number and the shipping date. If the shipping date is null, display the string <not shipped yet>.
How to declare a local variable?
what is difference between cartesian join & cross join even they give same result?
How to get a list of all tables in the database?
Why does for update in oracle 8 cause an ora-01002 error?
What is a schema in oracle?
How to convert characters to dates in oracle?