How to fix the Oracle error SQL*Loader-00601: For INSERT option, table must be empty. Error on table string?
In this post, you’ll learn more about the Oracle ErrorSQL*Loader-00601: For INSERT option, table must be empty. Error on table string with the details on why you receive this error and the possible solution to fix it.
Oracle Error Description
SQL*Loader-00601: For INSERT option, table must be empty. Error on table string
Reason for the Error SQL*Loader-00601: For INSERT option, table must be empty. Error on table string
A non-empty table is being loaded with the INSERT option.
How to fix the Error SQL*Loader-00601: For INSERT option, table must be empty. Error on table string ?
You can fix this error in Oracle by following the below steps
Use the REPLACE keyword to empty the old table and store the new data in its place. Use the APPEND keyword to leave the table’s contents intact and add the new data to it.
Leave Your Comment