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 ddl statements in mysql? : Sql dba

0 Answers  


what is sql server agent? : Sql dba

0 Answers  


What is a REF CURSOR? Compare strong and week ref cursor types.

6 Answers  


What has stored procedures in sql?

0 Answers  


What is the difference between inner join and outer join?

0 Answers  






what is 'mysqldump'? : Sql dba

0 Answers  


Explain the steps needed to create the scheduled job?

0 Answers  


What is a rank in sql?

0 Answers  


How do you respond to dementia behavior?

0 Answers  


What is difference between joins and union?

0 Answers  


Define tables and fields in a database

0 Answers  


What is the difference between the conventional and direct path loads? : aql loader

0 Answers  


Categories