how to pass values from one table to another by using Bulk
collect?

Answers were Sorted based on User's Feedback



how to pass values from one table to another by using Bulk collect?..

Answer / lak

SELECT fn1,fn2,fn3 BULK COLLECT INTO t3 FROM tname;

FORALL i IN 1 .. t3.COUNT
INSERT INTO tname1 VALUES T3(i);

Is This Answer Correct ?    10 Yes 2 No

how to pass values from one table to another by using Bulk collect?..

Answer / laxmi narayana moru

INSERT INTO T1 AS SELECT * FROM T2;

Is This Answer Correct ?    2 Yes 3 No

how to pass values from one table to another by using Bulk collect?..

Answer / laxmi narayana moru

insert into table1 as select * from table1;

Is This Answer Correct ?    1 Yes 8 No

Post New Answer

More Database Management Interview Questions

Why are recursive relationships are bad? How do you resolve them?

1 Answers  


What is father dbms?

1 Answers  


How do I take a backup of Stored Procedure in Oracle?

3 Answers  


What is normalization and why it is used?

1 Answers  


How do you create a blank database?

1 Answers  


Do I need ccp4?

1 Answers  


Is a database a file?

1 Answers  


What is database or database management systems (dbms)? And what's the difference between file and database? Can files qualify as a database?

1 Answers  


What is TERM ?

1 Answers  


What is the purpose of using a model?

1 Answers  


What do database languages do?

1 Answers  


How to Handle Missing Data in a Database?

1 Answers  


Categories