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

What is a cluster Key ?

2 Answers  


Table1- have two column filename data AFGDFD-20112011 hi how r u bsdasd-23042011 name shoud be in bold Now i want output like filename data AFGDFD hi how r u bsdasd name shoud be in bold Kindly answer this

2 Answers   HCL,


Can a formula column referred to columns in higher group ?

0 Answers   Oracle,


What is the Difference between 1) ER MODEL and Relational Model 2) Dense Index and Sparse Index

1 Answers  


IS it possible to built the oracle database without setting the kernal parameters?

0 Answers   EDS,






How to generate query output in html format?

0 Answers  


What is difference between truncate and delete?

0 Answers  


What is a Sequence ?

3 Answers  


how to select alphabets in a one column , for this the table name is PA_TASKS and column name is TASK_NUMBER, In TASK_NUMBER the data like this 1.1.3NN,1.1.4NN,1.5.1NN,1.3.2NE,1.5NN,1NN,1.2NE,1CE , For this i need to disply output as only NN,but not other alphabets, if NN is thre means i should display , otherwise leave that blank or empty Its some urgent requirement ,thanks in advance

2 Answers  


How to use subqueries in the from clause in oracle?

0 Answers  


How to drop an existing table in oracle?

0 Answers  


What are operators in oracle?

0 Answers  


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)