Bulk INSERT and UPDATE using NOLOGGING
943310Jun 25 2012 — edited Jun 25 2012Hi,
I need to do a bulk insert of around 10million records. Would the below insert options with NOLOGGING mode work ?
1. INSERT INTO EMPLOYEEDUMMY NOLOGGING (SELECT * FROM EMPLOYEES)
2. INSERT INTO TEMP_TABLE NOLOGGING VALUES('Cyrus','Daniel')
Also can the nologging mode be used in UPDATES like -
UPDATE TEMP_TABLE NOLOGGING SET DESC1 = 'Ethan' WHERE DESC1 = 'Cyrus'.
Will the above queries give the desired results or will the NOLOGGING keyword here be considered as table alias ?
Thanks in Advance.
Regards,
Nikhil