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 |
How to find the duplicate rows count from employees table in oracle?
State any two functions of oracle?
is there a tool to trace queries, like profiler for sql server?
Oracle
0 Answers ABC, Genpact, HUI, Oracle,
What are the four Oracle system processes that must always be up and running for the database to be useable?
What is an Index Segment ?
Which Department has MOST NUMBER of employees?
8 Answers IBM, LeadSquared, Mastek,
How to export your connection information to a file?
How to change program global area (pga) in oracle?
What is a data segment ?
candidate key is subset of super key but not vice-verse explain
7. Repeat query (7) but also display all clients who have never ordered anything.