lucien.jarrett (7/22/2011)
It basically creates a new table with the data from a another table. See exampleUSE AdventureWorks
GO
----Create new table and insert into table using SELECT INSERT
SELECT FirstName, LastName
INTO TestTable
FROM Person.Contact
WHERE EmailPromotion = 2
no and no. Only the filegroup has to be changed. there's no need for a full copy of the data. Moreover it's almost impossible to do without some downtime and rather complexe scripting.
It's way simpler to just move the clustered index!