Can i possible to see Table Details ?
Ex :
Table Name Date Time User
Emp May/18/2010 12:59pm Scott
Answer Posted / 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 |
Post New Answer View All Answers
what is the difference between myisam static and myisam dynamic? : Sql dba
What is meant by truncate in sql?
Does user triggers have entry for trigger with compilation errors?
What is a clob in sql?
How do you add a column to a table?
Can you have more than one trigger on a table?
Can instead of triggers be used to fire once for each statement on a view?
How global cursor can be declare with dynamic trigger ?
What are the most important characteristics of pl/sql?
how to present a past time in hours, minutes and seconds? : Sql dba
How to fetch values from testtable1 that are not in testtable2 without using not keyword?
How to select 10 records from a table?
How do I make my sql query run faster?
What is the primary key?
how to get a list of all tables in a database? : Sql dba