Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


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 is the relation of a user account and a schema in oracle?

0 Answers  


what is the need of indexing topic in oracle? where do we use in a Java project? any other option other than using this to get the same result where we use indexing ?

0 Answers   Goldman Sachs,


I have a table that log salary-increase-process have fields: autoid, old_salary, acctno and table EMP: acctno, name, salary I want to list count increase-salary of employees, each have old_salary, new_salary. Help me with SELECT statement, please!

1 Answers  


can any one help me with import/export options in oracle............

1 Answers  


What does sharding mean?

0 Answers  


How to define a data source name (dsn) in odbc manager?

0 Answers  


How to update values on multiple rows in oracle?

0 Answers  


How to define a procedure inside another procedure?

0 Answers  


What is pragma restrict_reference in oracle 9i?When we use this?Give me one realtime scenario?

4 Answers   Microsoft, Wipro,


Explain the family trees and connection by clause

0 Answers  


What is schema?

41 Answers   Bodhi Global Services, Cognizant, HCL,


How to list all user accounts in oracle?

0 Answers  


Categories
  • Oracle General Interview Questions Oracle General (1803)
  • 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)