{"id":3453,"date":"2015-12-16T10:01:38","date_gmt":"2015-12-16T15:01:38","guid":{"rendered":"https:\/\/academy.sqlbak.com\/?p=3453"},"modified":"2023-10-17T04:54:53","modified_gmt":"2023-10-17T08:54:53","slug":"invalid-filegroup-specified-msg-1921","status":"publish","type":"post","link":"https:\/\/academy.sqlbak.com\/invalid-filegroup-specified-msg-1921\/","title":{"rendered":"Invalid filegroup ‘…’ specified (Msg 1921)"},"content":{"rendered":"
“Invalid filegroup ‘…’ specified.<\/em>” error can appear in the case when the name of Filegroup where the new Table_1 will be stored is invalid. Look at the syntax bellow:<\/p>\n <\/p>\n In this case, the user tried to store the new\u00a0Table_1 into SecondaryFilegroup and received the following error message from SQL Server:<\/p>\n It means that such filegroup does not exist. The user has to create such filegroup or use another existing one to store the Table_1.<\/p>\n","protected":false},"excerpt":{"rendered":" “Invalid filegroup ‘…’ specified.” error can appear in the case when the name of Filegroup where the new Table_1 will be stored is invalid. Look at the syntax bellow: CREATE TABLE\u00a0Table_1 (Column1 int primary key, Column2 char(8)) ON [SecondaryFilegroup];<\/p>\n","protected":false},"author":10,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[159],"tags":[],"yoast_head":"\nCREATE TABLE<\/span>\u00a0Table_1\r\n(<\/span>Column1 int primary key<\/span>, Column2 char<\/span>(<\/span>8))<\/span>\r\nON<\/span> [SecondaryFilegroup];<\/pre>\n
Msg 1921, Level 16, State 1, Line 1<\/span>\r\nInvalid filegroup 'SecondaryFilegroup' specified.<\/span><\/pre>\n