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 table called 'test' on source and target with same name, structure and data type but in a different column order. How can you setup replication for this table?
Can the query output be sorted by multiple columns in oracle?
What is data block in Oracle?
How would you begin to troubleshoot an ORA-3113 error?
How to drop an index in oracle?
How can you use check constraints for self referential integrity?
hi friends i completed b.com 2004.i have 3y accounting exp. in manufacturing company.now i have completed oracle finance.pls suggest me how will get job in oracle.can i get job in oracle.
How can you merge two tables in oracle?
What are the built-in functions used for sending Parameters to forms ?
How to rename a column in an existing table?
What is the difference between count (*), count (expression), count (distinct expression)?
What is a sub query? Describe its types?
Explain oracle left join with an example?
WHAT IS THE DEFINITION OF DEFAULT CUSTOMER IN AR?
What do you mean by merge in oracle and how can we merge two tables?