Who i will insert 1 lacks record in a Database table

Answers were Sorted based on User's Feedback



Who i will insert 1 lacks record in a Database table..

Answer / ramesh

you can go for bulk insert.

Is This Answer Correct ?    7 Yes 1 No

Who i will insert 1 lacks record in a Database table..

Answer / kuldeep

CREATE TABLE A
(
ID NUMBER
)
NOLOGGING;

INSERT /*+APPEND*/ INTO A(ID)
SELECT LEVEL
FROM DUAL
CONNECT BY LEVEL <= 100000;
COMMIT;

SELECT *
FROM A;

Is This Answer Correct ?    4 Yes 0 No

Who i will insert 1 lacks record in a Database table..

Answer / milan

The qs is not quite clear....

Still I suppose u wana insert 1 lach record in database
table.

It is quite simple....

Just write a stored procedure for insert of 1 lakh
records,compile it and run...

U will b get 1 lakh records inserted in a single stroke...

Is This Answer Correct ?    3 Yes 3 No

Who i will insert 1 lacks record in a Database table..

Answer / vawani sankar naik

USE SQL * LOADER.

Is This Answer Correct ?    0 Yes 2 No

Post New Answer

More Oracle General Interview Questions

1.display list of all users from ur data base.what is the query?

3 Answers   CGI, IBM,


Assuming today is Monday, how would you use the DBMS_JOB package to schedule the execution of a given procedure owned by SCOTT to start Wednesday at 9AM and to run subsequently every other day at 2AM.

0 Answers  


What is proxy method?

0 Answers  


what is the difference between dbms and rdbms?

3 Answers   Oracle,


How to use "startup" command to start default instance?

0 Answers  






What are joins, explain all types of joins?

0 Answers   Bravura Solutions,


Explain view?

0 Answers  


What are oracle functions?

0 Answers  


how to store only time in a data base table

2 Answers  


How i can handle exception in large code like 1000 line without distrubing the code or without exception handler sction?

0 Answers   Zensar,


normally database take to refresh time 2 hours. but client asked iwant to refresh with in 5 min that same database. do you have any option in BO and Oracle? explain me briefly...kavi

0 Answers   iFlex,


how will I find the first 5 highest salaried employees in each dept in oracle.

22 Answers   IBM,


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)