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
What do you mean by stored procedures?
What is difference between sql and mysql?
How does sql*loader handles newline characters in a record? : aql loader
what is msql? : Sql dba
Why stored procedure is faster than query?
Explain the the update statement in sql?
What is example of database?
What are the types of records?
Can triggers stop a dml statement from executing on a table?
What is pl sql collection?
Can we use ddl commands in pl sql?
Why does sql need a server?
how to create a test table in your mysql server? : Sql dba
How to call shell script from pl sql procedure?
How to check if a column is nullable before setting to nullable?