Which is faster when moving a table to new filegroup: (table wheighs 400GB)
-----------------------------------------------------
--[1]
sp_rename 'TAB1' , 'TAB1_OLD' -- located on OLD_FG
GO
CREATE TABLE TAB1
( [primaryKey] [int] IDENTITY(1,1) NOT NULL,
[description] [varchar](2000)...