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

How many categories of data types in oracle?

1 Answers  


Can a Tablespace hold objects from different Schemes ?

3 Answers  


I just want to maintain data like an employee can belongs to 3 or more departments . We can resolve this by using composite key but it avoids normalization rules. So Can anyone tell me how can I maintain data.

1 Answers   IBM,


What are the different windows events activated at runtime ?

1 Answers   Oracle,


what is load balancing and what u have used to do this?(sql loader)

3 Answers  


Can objects of the same schema reside in different tablespace?

1 Answers  


What does COMMIT do ?

4 Answers  


How to define an anonymous block?

1 Answers  


What is truncate oracle?

1 Answers  


when we are importing items in inventory, showing errors, Oracle support suggested us for running scripts & also suggested if we run scripts, iprocurement applicaation if is there it will show shared and if we go in future for iprocurement, it wont work. So kinldy suggest any functional solution.

1 Answers  


I have a table called 'test' on source and target with same name, structure and data type but in a different column order. How can you setup replication for this table?

1 Answers   Oracle,


What is partitioned table in Oracle?

1 Answers   MCN Solutions,


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)