Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2000 Forums
 SQL Server Administration (2000)
 Seperating NTEXT column and its table

Author  Topic 

venkath
Posting Yak Master

202 Posts

Posted - 2007-12-15 : 12:17:25
Hi All

I have a table with NTEXT column.
I would like to seperate NTEXT column and its Table into two seperate file groups.

Is it possible to achieve this with out dropping and recreating the table?

Thanks in advance.

SwePeso
Patron Saint of Lost Yaks

30421 Posts

Posted - 2007-12-15 : 16:51:01
Yes. Create a new table on the bew filegroup with PkCol and NTEXT col.
Then

INSERT NewTable
SELECT PkCol, NTEXTcol
FROM SourceTable



E 12°55'05.25"
N 56°04'39.16"
Go to Top of Page
   

- Advertisement -