What is magic table?

Answers were Sorted based on User's Feedback



What is magic table?..

Answer / vaibhavi_dixit

Dual table is know as magic table, which has only one
columns with name as "DUMMY" and a row with value X.
One can describe DUAL with desc dual; command.
It is mainly used for testing some math expressions or some
character functions like
select (2+2) from dual;
It is automatically created,assigned to SYS but accessible
to all users.

VD

Is This Answer Correct ?    19 Yes 2 No

What is magic table?..

Answer / santosh

Dual is a magic table

Is This Answer Correct ?    15 Yes 2 No

What is magic table?..

Answer / roopesh kumar

In oracle Dual is a magic table.

Is This Answer Correct ?    15 Yes 4 No

What is magic table?..

Answer / 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

What is magic table?..

Answer / annam.n

dual is an imaginary table.it only used for process any
functions on there, but we can't view the structure of the
dual table.so the dual table is a magic table

Is This Answer Correct ?    6 Yes 10 No

What is magic table?..

Answer / brahma

They are two tables in MS Sql Server
1.Delete table
2.Update table

Is This Answer Correct ?    3 Yes 11 No

Post New Answer

More SQL PLSQL Interview Questions

What is Temp Table and type of temp table?

1 Answers   HP, SLK,


what is column? : Sql dba

1 Answers  


Why use triggers in sql?

1 Answers  


what are the advantages of package?

7 Answers   iFlex,


Is it possible to access the current value in a session before accessing next value?

1 Answers  


How do you create an update query?

1 Answers  


Explain Connect by Prior?

2 Answers  


Can you select everything, but 1 or 2 fields, without writer's cramp?

1 Answers  


What are the two parts of design view?

1 Answers  


why does the selected column have to be in the group by clause or part of an aggregate function? : Sql dba

1 Answers  


What is the difference between having and a where in sql?

1 Answers  


What are different functions in sql?

1 Answers  


Categories