place fulltext index into diffrent filegroup

  • HI,

    Can any one suggest me how to place fulltext index into diffrent filegroup which i created in diffrent drive.

  • Use the "select index filegroup" option of the wizard when creating the index.

  • Thank you anthony.green,

    Fulltext index already created the in developing server and want to implement in production server with changing the filegroup.

    How do i change my full text file group.

  • When you create the full text index, use the option I detailed to tell it where to put it.

  • Thank you

    I need to change my filegroup which is already created with primary file group.

    Should i fulltext and create new ?

  • If the FTC / FTI is already created, then the only way I know of to move it to a different file group is drop and recreate.

  • ratheesharc (2/1/2013)


    Thank you anthony.green,

    Fulltext index already created the in developing server and want to implement in production server with changing the filegroup.

    How do i change my full text file group.

    On the production system create the new filegroup and create a new file inside the filegroup.

    Create a new Fulltext catalog.

    To create the index use the following syntax

    CREATE FULLTEXT INDEX on tablename(columnname, columnname,n,n,n)

    KEY INDEX the_unique_index_name_you_are_using

    ON (fulltextCatalogname, FILEGROUP filegroupname)

    WITH options here

    This is all detailed in Books Online 😉

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • Thank you very much for you reply....

Viewing 8 posts - 1 through 7 (of 7 total)

You must be logged in to reply to this topic. Login to reply