Sep 23, 2004 #1 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
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
Sep 23, 2004 #2 gradley Programmer Feb 24, 2004 335 US 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 Upvote 0 Downvote
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