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
Explain the use of tables option in exp command.
What is coalesce function?
What is a user account in oracle?
What do you mean by cdb and pdb in oracle 12c?
How to use subqueries in the from clause in oracle?
Is primary key indexed by default in oracle?
Difference between oracle's plus (+) notation and ansi join notation?
Can we call procedure inside function in oracle?
How to count duplicated values in a column in oracle?
Explain compound trigger in oracle?
What is oracle instant client?
What is oracle data type?
11. Display the client number and name and the client number and name of the person who referred that client.
what is the use of triggers in Java program? I mean where do we use triggers in Java programming?
What privilege is needed for a user to create indexes in oracle?