Answer Posted / saraswathi muthuraman
Oracle will have a default table called 'DUAL'.
Dual table will have only one column "DUMMY". U cann't
insert values into dual table. By default, a row will
existing in dual table.
SQL> desc dual;
DUMMY varchar2(1)
SQL> select * from dual;
X
1 row selected.
SQL> insert into dual values (10);
insert into dual values (10)
*
ERROR at line 1:
ORA-01031: insufficient privileges
U can create you own table with the name of dual.
SQL> create table dual(xy number,zz number);
Table created.
SQL> desc dual;
xy number
zz number
u can insert values in you own dual table.
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
I have a database backup file in .db (ext) form how to conver it into .dmp (ext.) for oracle database
How to view all columns in an existing table?
Can you have more than one content canvas view attached with a window ?
What is connection pooling in oracle?
Give the advantages and disadvantages of clusters.
Difference between inner join vs where ?
What to do if dba lost the system password?
why should i declare foreign key constraint as self relation instead of binary relation in tables ?
Explain the use of indexes option in imp command.
What are the limitations of check constraint?
What is max rowid in oracle?
Compare and contrast between sql and sql server and explain its various functions?
What is the quickest way to fetch the data from a table?
What is a nvl function?
What is an oracle and why it is used?