How would I disable and later enable all indexes in a given schema/database in Oracle?
Note: This is to make sqlldr run faster.
|
|
|||
|
|
|
From here: http://forums.oracle.com/forums/thread.jspa?messageID=2354075
do import...
|
||
|
|
|
|
If you are using non-parallel direct path loads then consider and benchmark not dropping the indexes at all, particularly if the indexes only cover a minority of the columns. Oracle has a mechanism for efficient maintenance of indexes on direct path loads. Otherwise, I'd also advise making the indexes unusable instead of dropping them. Less chance of accidentally not recreating an index. |
||
|
|
|
|
You can disable constraints in Oracle but not indexes. There's a command to make an index ununsable but you have to rebuild the index anyway, so I'd probably just write a script to drop and rebuild the indexes. You can use the user_indexes and user_ind_columns to get all the indexes for a schema or use dbms_metadata:
|
||
|
|
|
|
Combining the two answers: First create sql to make all index unusable:
Do import...
|
||
|
|
|
|
combining 3 answers together: (because a select statement does not execute the DDL)
Do import...
Note this assumes that the import is going to happen in the same (sqlplus) session. |
||
|
|
|
|
If you're on Oracle 11g, you may also want to check out dbms_index_utl. |
||
|
|
|
|
You should try sqlldr's SKIP_INDEX_MAINTENANCE parameter. |
||
|
|