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

What do you understand by clause in sql?

0 Answers  


How do queries work in a database?

0 Answers  


What is the purpose of a field in a database?

0 Answers  


Explain ddl interpreter?

0 Answers  


What is the difference between a catalog and a database?

0 Answers  






Explain why an information gap exists in most organizations.

0 Answers  


How do you maintain a database?

0 Answers  


Explain about the case statement present in stored procedure?

0 Answers  


What is an artificial (derived) primary key? When should it be used?

0 Answers  


what do u mean by implementation?

0 Answers  


From where the Transactions per rollback segment is derived ?

1 Answers  


What is file manager?

0 Answers  


Categories