Delay index build until SQL Server table load is complete with SSIS

Posted by Mattew on Server Fault See other posts from Server Fault or by Mattew
Published on 2009-11-02T19:37:07Z Indexed on 2010/03/18 17:01 UTC
Read the original article Hit count: 270

Filed under:
|
|

I have a large table that I am updating. Is it possible to disable index updates on the destination table until the load is complete? It seems like a waste for it to be constantly updating the index with each commit.

I can just drop and recreate the index before and after the load, I just want to know if there is a quick way to configure that in the OLEDB or SQL Server destination.

Server is Windows Server 2003 Datacenter Edition, running SQL Server 2008 Standard Edition with SSIS.

© Server Fault or respective owner

Related posts about sql-server

Related posts about indexing