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



Can i possible to see Table Details ? Ex : Table Name Date Time User Emp ..

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

Can i possible to see Table Details ? Ex : Table Name Date Time User Emp ..

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

Can i possible to see Table Details ? Ex : Table Name Date Time User Emp ..

Answer / prash

yes

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More SQL PLSQL Interview Questions

what are the advantages of primary key over unique+notnull

7 Answers   Consultancy, LGS, Oracle,


What operators deal with null?

1 Answers  


How do I view a sql database?

1 Answers  


Do you understand the meaning of exception handling?

3 Answers  


Does sql profiler affect performance?

1 Answers  


What is the primary use of normalization?

1 Answers  


What is sqlerrm?

1 Answers  


What is cte?

1 Answers  


Is hadoop a nosql?

1 Answers  


find the third highest salary?

23 Answers  


What is the difference between delete and truncate commands?

1 Answers  


does sql support programming? : Sql dba

1 Answers  


Categories