can we insert any row to dual table if i got the permission
from DBA

Answers were Sorted based on User's Feedback



can we insert any row to dual table if i got the permission from DBA..

Answer / ram babu mandal(software engin

Yes, first I connect the as sysdba after that we insert
data in the dual table as

sql>conn / as sysdba
connected
sql>desc dual;
insert into dual values('A');
(1)row inserted

but I found some problems after that ,We use
sql> seelct * from dual;

Only one value displayed
that was default 'x' as system defined data not displayed
other data a like 'A'.


Dummy
-------
x

Only x record display in the dual table.

Is This Answer Correct ?    10 Yes 2 No

can we insert any row to dual table if i got the permission from DBA..

Answer / neo devan

No, its a system table defined by oracle.
Even the DBA has read privileges for dual table.

Is This Answer Correct ?    18 Yes 13 No

can we insert any row to dual table if i got the permission from DBA..

Answer / kiran

yes why not . you can insert values and see the values also

but a caviet you can only insert 1 value

its has datatype with length 1

varchar2(1)

Is This Answer Correct ?    4 Yes 0 No

can we insert any row to dual table if i got the permission from DBA..

Answer / chandana

Dual is a pseudotable with one column varchar and length=1.
Yes, we can insert values into Dual table provided the
inserted value is of type varchar and length =1.

Is This Answer Correct ?    4 Yes 0 No

can we insert any row to dual table if i got the permission from DBA..

Answer / sanjay gupta

U can by connecting as sysdba

but it displays all rows

insert into dual values('A');
insert into dual values('B');
commit;
select * from dual;
Dummy
-------
x
A
B
in same session and will display x in different session only

Is This Answer Correct ?    1 Yes 10 No

Post New Answer

More Oracle General Interview Questions

What are the values that can be specified for OPTIMIZER MODE Parameter ?

1 Answers  


What is bind variable in oracle 11g?

0 Answers  


What is oracle server autotrace in oracle?

0 Answers  


Hi can anyone tell me where are the dumps found of OCA certification.. Also the materials to be studied for the preparation.

2 Answers  


what is grid in Oracle 10g...

1 Answers  






What is oracle database client?

0 Answers  


Explain joins in oracle?

0 Answers  


Whether Oracle satisfy more codd rules or db2 satisfy more codd rules? How meny of each can satisfy ? Please answer me. Advance thanks

2 Answers   IBM,


How to see the table columns used in an index?

0 Answers  


Why required to run root.sh at the time of installation and what exactly it will do

1 Answers  


structural difference between bitmap and btree index ?

1 Answers   Infosys,


What are the different types of partitions in oracle?

0 Answers  


Categories
  • Oracle General Interview Questions Oracle General (1789)
  • Oracle DBA (Database Administration) Interview Questions Oracle DBA (Database Administration) (261)
  • Oracle Call Interface (OCI) Interview Questions Oracle Call Interface (OCI) (10)
  • Oracle Architecture Interview Questions Oracle Architecture (90)
  • Oracle Security Interview Questions Oracle Security (38)
  • Oracle Forms Reports Interview Questions Oracle Forms Reports (510)
  • Oracle Data Integrator (ODI) Interview Questions Oracle Data Integrator (ODI) (120)
  • Oracle ETL Interview Questions Oracle ETL (15)
  • Oracle RAC Interview Questions Oracle RAC (93)
  • Oracle D2K Interview Questions Oracle D2K (72)
  • Oracle AllOther Interview Questions Oracle AllOther (241)