The title is clear enough, I created a new Filegroup "ArchiveFileGroup":
ALTER DATABASE MyDataBase
ADD FILEGROUP ArchiveFileGroup;
GO
I want to create a table called : arc_myTable in order to store old data from this one : myTable
I used the following query :
CREATE TABLE [dbo].acr_myTable(
[Id] [bigint] NOT NULL,
[label] [nvarchar](max) NOT NULL,
)on ArchiveFileGroup
I'm not sure if it's the right way, I don't know where the FileGroup is created to check if it contains the table.
You can easily check with this sql query:
Just add:
to see everything in your new filegroup or:
to see where your table is located.
If you never added a file to your filegroup, then I would expect an error but you didn't include either an error message or anything saying you did create a file. If you did not, I suggest starting at the microsoft documentation if needed.
The OP found the this helpful trying to create a new file in his filegroup.