Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

FileGroups

Status
Not open for further replies.

qsac

Programmer
Jan 22, 2002
242
US
Can some one tell me how i can create a user defined file group? I want to store the indexes on a different drive.

thanks
 
Refer to ALTER DATABASE command in BOL..

There is an example (B) for adding filegroups.

Code:
USE master
GO
ALTER DATABASE Test1
ADD FILEGROUP Test1FG1
GO
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top