how to pass values from one table to another by using Bulk
collect?
Answers were Sorted based on User's Feedback
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 |
Answer / laxmi narayana moru
INSERT INTO T1 AS SELECT * FROM T2;
Is This Answer Correct ? | 2 Yes | 3 No |
Answer / laxmi narayana moru
insert into table1 as select * from table1;
Is This Answer Correct ? | 1 Yes | 8 No |
What is Data Redundancy and Consistency ?
What are the objectives of rdbms?
What is the difference between star flake and snow flake schema?
Define dbms.
Differentiate between nested loop, hash loop and merge join.
Define view, sequence and index in DBMS.
what is the use of SYSTEM.EFFECTIVE.DATE varaible ?
Mention the different types of cursor?
What is normalization and why it is used?
What are the disadvantages of a database?
Why do we need to use a database?
What do you understand by index hunting?