I have a SQL Server 2000 table in a production environment with about 80 million rows. I need to add a nullable bit column to the table. While adding a column with null value to a production table is a quick operation with just a schema update, I also need to add an index on that column.
Will the table/server lock up when I add the index? Is there a way of achieving this with the least possible impact on performance?
Thanks