Can i possible to see Table Details ?
Ex :
Table Name Date Time User
Emp May/18/2010 12:59pm Scott
Answers were Sorted based on User's Feedback
Answer / saraswathi muthuraman
SELECT OWNER,OBJECT_NAME,To_char(CREATED,'MON//DD/YYYY'),
to_char(CREATED,'HH:MM PM') from ALL_OBJECTS WHERE
OBJECT_TYPE ='TABLE' AND OBJECT_NAME ='EMP_TEST';
Result:
Saras EMP_TEST
JUN//01/2010 11:06 AM
Is This Answer Correct ? | 6 Yes | 0 No |
Answer / kamal
SELECT OWNER,OBJECT_NAME,TRUNC(CREATED),TIMESTAMP FROM
DBA_OBJECTS WHERE OBJECT_TYPE ='TABLE' AND OBJECT_NAME
='EMP'
Is This Answer Correct ? | 4 Yes | 0 No |
What is the maximum database size for sql express?
what is SCALAR Queries?
What is the difference between clustered and non-clustered indexes?
Why triggers are used?
What view means?
how to insert the data through views? The view is depending upon more than two tables? how to update materalized views?
How to call DDL statements from pl/sql?
What does over partition by mean in sql?
how to insert the records in particular position
What is the Diff b/w Constraints and Trigeer
What is a unique key?
What are triggers, and when would you use them?