Quote:
Originally Posted by harshrpce
I want to drop the indexes of a table while loading the data into table as load is taking too much time in building the indexes
|
You'll probably have to (re)build the indexes anyhow after the load finishes, that is: the "create index" will do that.
So it's not necessarily a good idea to drop indexes before starting the load.
(It could be, sure; but all depends on a lot of other aspects.)