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 is the maximum database size for sql express?

0 Answers  


what is SCALAR Queries?

2 Answers   ITC Infotech,


What is the difference between clustered and non-clustered indexes?

0 Answers  


Why triggers are used?

0 Answers  


What view means?

0 Answers  






how to insert the data through views? The view is depending upon more than two tables? how to update materalized views?

3 Answers   3i Infotech,


How to call DDL statements from pl/sql?

5 Answers  


What does over partition by mean in sql?

0 Answers  


how to insert the records in particular position

1 Answers  


What is the Diff b/w Constraints and Trigeer

4 Answers   HCL,


What is a unique key?

0 Answers  


What are triggers, and when would you use them?

3 Answers  


Categories