Moving Large Table to Different File Group
By Raj Gujar, 2013/12/06 (first published: 2008/10/16)
Допустим, что мы имеем какую-нибудь базу данных, растущую в размере очень быстро. Находится она на диске E: размером 200 GB. Диск уже наполнен на 90 процентов и в перспективе база станет больше диска. На этом сервере есть другие и достаточно памяти, поэтому логично будет переместить несколько больших таблиц на другой диск.
Далее описано как это выполнить. Первое, мы определяем самую большую таблицу, используя sp_spaceused для того, что бы узнать место, занимаемое каждой таблицей.
Затем мы принимаем решение создать новую файлгруппу на языке T-SQL (можно использовать и SSMS).
Now let's see how you can move an existing table that has a Cluster Index to a different filegroup. First, let's drop the Primary Key constraint with an Move to Option ( We are assuming that there is a cluster index on the PK).
The transfer time may depend on the size of the table, so please do not do this during business hours. SQL Server will generally lock the entire table.
Now all you data for that table will be moved to the new file group. И пожалуйста, не забудьте shrink базу данных для того, чтобы освободить память.
Далее описано как это выполнить. Первое, мы определяем самую большую таблицу, используя sp_spaceused для того, что бы узнать место, занимаемое каждой таблицей.
Затем мы принимаем решение создать новую файлгруппу на языке T-SQL (можно использовать и SSMS).
ALTER DATABASE SALES ADD FILEGROUP [SECONDERYDATA]
Затем мы создаем файл на новом диске под созданной файлгруппой: ALTER DATABASE SALES
ADD FILE
( NAME = XFILENAME,
FILENAME = 'new path\SALES.ndf',
SIZE = 1MB,
MAXSIZE = 10MB,
FILEGROWTH = 1MB)
TO FILEGROUP [SECONDERYDATA]
GO
Теперь, база данных знает, что существует и другая файл группа, которая может быть использована для хранения данных. Remember the Server \ Database will not start to create new files in the
new file group, you will have to explicitly specify it. Now let's see how you can move an existing table that has a Cluster Index to a different filegroup. First, let's drop the Primary Key constraint with an Move to Option ( We are assuming that there is a cluster index on the PK).
ALTER TABLE [INVOICE]
DROP CONSTRAINT [INVOICE_PK] WITH (MOVE TO SECONDERYDATA)
After the move, we now recreate the PK Constraint: ALTER TABLE [INVOICE]
ADD CONSTRAINT [INVOICE_PK] PRIMARY KEY CLUSTERED
( [column name] ASC
)WITH (IGNORE_DUP_KEY = OFF) ON [SECONDERYDATA]
Remember when you recreate the PK constraint on the Seconderydata filegroup,
all the data in that table will automatically be moved to the Secondery data
filegroup. This will only happen in the case of a table that has a primary key
constraint and has a clustered index. The transfer time may depend on the size of the table, so please do not do this during business hours. SQL Server will generally lock the entire table.
Now all you data for that table will be moved to the new file group. И пожалуйста, не забудьте shrink базу данных для того, чтобы освободить память.
Комментариев нет:
Отправить комментарий