can we insert any row to dual table if i got the permission
from DBA
Answer Posted / 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 |
Post New Answer View All Answers
Why do we need integrity constraints in a database?
What is oracle sid?
How to create lov dynamically at runtime & attach to text field?
How to upsert (update or insert into a table)?
Where do we use decode and case statements?
What is a initialization parameter file in oracle?
How to drop an existing view in oracle?
What are the various types of snapshots ?
What is the difference between the Oracle ODBC driver and a Microsoft ODBC (Open Database Connectivity) Driver?
Explain the use of indexes option in imp command.
How to handle a single quote in oracle sql?
Why oracle is used?
i wrote a pl/sql procedure. it must run every sunday 4.40 How can i schedule it with the help of dbms_jobs (or another other procedure with out creating bat file,exe file)
Calculate difference between 2 date / times in oracle sql?
What is an oracle function?