We can use below scrip to disable indexes
ALTER INDEX ALL ON [TableName]
DISABLE;
Do your bulk insert to table and than run below script.
ALTER INDEX ALL ON [TableName]
REBUILD;
We can use below scrip to disable indexes
ALTER INDEX ALL ON [TableName]
DISABLE;
Do your bulk insert to table and than run below script.
ALTER INDEX ALL ON [TableName]
REBUILD;