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
What do you mean by redo log file mirroring?
What is the exact use of Collections?
Explain the importance of .pll extension in oracle?
What is not equal to in oracle?
What is the disadvantage of User defind function?
Which are the five query types available in oracle?
What is the data pump import utility?
What are privileges and grants?
How can I convert single byte kana characters into multi byte kana characters and vice-versa.
What is meant by recursive hints in oracle?
How can I see all tables in oracle?
What is primefaces used for?
What is a Garbage Collection? and what is full recursive Garbage collection?
Please explain joins in oracle?
What is format trigger?