can we insert any row to dual table if i got the permission
from DBA
Answer Posted / 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 View All Answers
Please explain oracle left join with an example?
How to create a table interactively?
What is null value in oracle?
What is oracle sid?
what is the difference between restoring and recovering?
Please explain joins in oracle?
What is catalog in Oracle?
Explain temporal data types in oracle
How to unlock the sample user account in oracle?
What are the uses of linked server and explain it in detail?
How to use an explicit cursor without open statements?
types of indexes and the rationale behind choosing a particular index for a situation.
Is postgres faster than oracle?
How to retrieve data from an explicit cursor?
What are the different pseudo commands? Explain in general?