Explain the concept of the DUAL table.
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / eshwari
Dual table is a sample permanent table which come along with
oracle.
for example if u want to knw the sin(45) value then u have
to retreave it from a table.but there is no table to
retreave that value.
so we use the sample table dual as table name in place of
table name in the select query.
ex:select sin(45) from dual;
| Is This Answer Correct ? | 4 Yes | 0 No |
select trunc(round(156.00,-1),-1) from dual;
What happens if variable names collide with table/column names?
How many anonymous blocks can be defined?
How to assign a table row to a record variable?
What is the use of file param in imp command?
Create table Employee ( Employee_Id varchar2(8) Constraint emp_id_pk primary key, FirstName varchar2(50), LastName varchar2(50), DeptID Number(5) Constraint dept_id_fk Foreign Key(DeptId) References Department(DeptId) ) Error I am getting: Constraint specification are not allowed here
What happens if the update subquery returns multiple rows?
Where do you use decode and case statements?
In XIR2 if we lost the administration password .How can we regain the password?thanks in advance.
What are the sql clauses supported in the link property sheet ?
What is a snapshot in oracle database?
What are the Limitations of a CHECK Constraint ?