Who i will insert 1 lacks record in a Database table
Answer Posted / 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 |
Post New Answer View All Answers
What happens to the indexes if a table is recovered?
What is private procedure oracle?
What are the attributes of the cursor?
What is analyze command used for?
Why do we need integrity constraints in a database?
What is rowid and rownum in oracle?
What is a partition in oracle?
What is the exact use of Collections?
What is a lookup table in oracle?
How many types of auditing in Oracle?
What are the limitations oracle database 10g xe?
What is enter substitution variable in oracle?
What are advantages of dateset in datastage?
How to filter out duplications in the returning rows using oracle?
what is Single Byte Overhead...?