I have SQL Server 2008 Ent
and OLTP database
with two big tables. How I can move these tables to another filegroup
without service int
Please note, that recreating the clustered index only moves the "primitive" columns, like int, bit, datetime
etc.
To move varchar(max), varbinary
and other "blob" columns you have to recreate the table. Thankfully, there's a way to do this semi-automatically in SSMS - by changing the "text filegroup" in the table "design" window, and then saving changes.
I blogged about this here: https://www.jitbit.com/alexblog/153-moving-sql-table-textimage-to-a-new-filegroup/ if you need more details.
NOTE: Moving a table to another filegroup only works with Enterprise Edition.
Step 1 :
Check on which filegroup table is residing:
-- Query to check the tables and their current filegroup:
SELECT tbl.name AS [Table Name],
CASE WHEN dsidx.type='FG' THEN dsidx.name ELSE '(Partitioned)' END AS [File Group]
FROM sys.tables AS tbl
JOIN sys.indexes AS idx
ON idx.object_id = tbl.object_id
AND idx.index_id <= 1
LEFT JOIN sys.data_spaces AS dsidx
ON dsidx.data_space_id = idx.data_space_id
ORDER BY [File Group], [Table Name]
Step 2 :
Move an existing table / tables to the new Filegroup
If the filegroup you want to move the table to doesn’t already exist then please create the secondary filegroup and then move the table.
To move a table to a different filegroup involves moving the table’s clustered index to the new filegroup. The leaf level of the clustered index actually contains the table data. So moving the clustered index can be done in a single statement using the DROP_EXISTING clause as follows:
CREATE UNIQUE CLUSTERED INDEX [Index_Name] ON [SchemaName].[TableName]
(
[ClusteredIndexKeyFields]
)WITH (DROP_EXISTING = ON, ONLINE = ON) ON [FilegroupName]
GO
Step 3:
Move the remaining Non-Clustered indexes to secondary filegroup
You have to move the Non-clustered indexes manually by using the below mentioned syntax:
--1st check the index information using the following sp
sp_helpindex [YourTableName]
--Now by using the following query you can move the remaining indexes to secondary filegroup
CREATE NONCLUSTERED INDEX [Index_Name] ON [SchemaName].[TableName]
(
[IndexKeyFields]
)WITH (DROP_EXISTING = ON, ONLINE = ON) ON [FilegroupName]
GO
Moving a Heap to another filegroup:
As I know the only way to move the Heap to another filegroup is to temporarily add a clustered index on the new filegroup and then drop it (if necessary).
To answer this question, first we must understand
The first step is to find out more information about the table we want to move. We do this by executing this T-SQL:
sp_help N'<<your table name>>'
The output will show you a column titled 'Data_located_on_filegroup.' This is a handy way to know which filegroup your table data is on. But more important is the output that shows you information about the table's indexes. (If you only want to see information about the table indexes, just run sp_helpindex N'<<your table name>>'
) Your table may have 1) no indexes (so it's a heap), 2) a single index, or 3) multiple indexes. If the index_description starts with 'clustered, unique, ...', that is the index you want to move. If the index is also a primary key, that is OK, you can still move it.
To move the index, make a note of the index_name and index_keys shown in the results of the above help query, then use them to fill in the <<blanks>>
in the following query:
CREATE UNIQUE CLUSTERED INDEX [<<name of clustered index>>]
ON [<<table name>>]([<<column name the index is on - from index_keys above>>])
WITH (DROP_EXISTING = ON, ONLINE = ON)
ON <<name of file group you want to move the index to>>
The DROP EXISTING, ONLINE
options above are important. DROP EXISTING
makes sure the index is not duplicated, and ONLINE
keeps the table online while you're moving it (now only available in Enterprise versions).
If the index you're moving is not a clustered index, then replace UNIQUE CLUSTERED
above with NONCLUSTERED
To move a heap table, add a clustered index to it, then run the above statement to move it to a different filegroup, then drop the index.
Now, go back and run sp_help
on your table, and check the results to see where your table and index data is now located.
If your table has more than one index, then after you run the above statement to move the clustered index, sp_helpindex
will show that your clustered index is on the new filegroup, but any remaining indexes will still be on the original filegroup. The table will continue to function normally, but you should have a good reason why you want the indexes located in different filegroups. If you want the table and all its indexes to be in the same filegroup, repeat the above instructions for each index, substituting CREATE [NONCLUSTERED, or other] ... DROP EXISTING...
as necessary, depending on the type of index you are moving.
If you want to just move the table to a new filegroup, you need to recreate the clustered index on the table (after all: the clustered index is the table data) on the new filegroup you want.
You can do this with e.g.:
CREATE CLUSTERED INDEX CIX_YourTable
ON dbo.YourTable(YourClusteringKeyFields)
WITH DROP_EXISTING
ON [filegroup_name]
or if your clustered index is unique:
CREATE UNIQUE CLUSTERED INDEX CIX_YourTable
ON dbo.YourTable(YourClusteringKeyFields)
WITH DROP_EXISTING
ON [filegroup_name]
This creates a new clustered index and drop the existing one, and it creates the new clustered index in the file group you specified - et voila, your table data has been moved to the new filegroup.
See the MSDN docs on CREATE INDEX for details on all available options you might want to specify.
This of course doesn't yet deal with partioning, but that's a whole other story all to itself...
CREATE CLUSTERED INDEX IXC_Products_Product_id
ON dbo.Products(Product_id)
WITH (DROP_EXISTING = ON) ON MyNewFileGroup
Partitioning is one solution, but you could "move" the clustered index to the new filegroup with no service interruption (subject to some conditions, see link below) using
CREATE CLUSTERED /*oops*/ INDEX ... WITH (DROP_EXISTING = ON, ONLINE = ON, ...) ON newfilegroup
The clustered index is the data and this is the same as moving filegroup.
Please see CREATE INDEX
This depends on if your primary key is clustered or not, which changes how we'd do it