Answer Posted / shekharjchandra
We can view the structure of the DUAL table by
SQL> DESCRIBE DUAL
or being in SYS user
SYS> SELECT DBMS_METADATA('TABLE','DUAL','SYS') FROM DUAL ;
Before that use below set command
SQL> SET PAGESIZE 100 -- or whatever you like so that you can see whole structure of the create table definition
Regards
J
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Mention what plvcmt and plvrb does in pl/sql?
How does pl sql work?
How do I tune a sql query?
How does sql*loader handles newline characters in a record? : aql loader
What are the possible values that can be stored in a boolean data field?
How to start oracle sql developer?
What is cursor in pl sql?
Are stored procedures compiled?
How do I view a view in sql?
What is a stored procedure in sql with example?
what is schema? : Sql dba
what are the advantages a stored procedure? : Sql dba
What is pivot table in sql?
Is it possible to Restore a Dropped Table using Rollback Command in Oracle SQL Plus ?
Do we need to rebuild index after truncate?