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
How to retrieve the count of updated rows?
What are group functions in oracle?
What are the attributes of cursor?
What are the restrictions on external table columns?
How to connect to a local oracle 10g xe server?
Explain an exception and its types?
How do I uninstall oracle client from windows?
how do u setup a replication site?
hey friends, What are the steps I can do to transfer the database from Microsoft Access 2003 to oracle10g (or SQL) Best regards
How to change program global area (pga) in oracle?
How do I use os authentication with weblogic jdriver for oracle and connection pools?
Assuming that you are an End User How to find that in the payment Batch some of the Invoice was Missing To pay How to find That??
Explain about the analyze command in oracle?
State some uses of redo log files?
How to use "for" statements in oracle?