在工作时,SQL Server
我遇到了更改FileGroup
.File
假设,我们使用下面的 sql 代码创建一个数据库:
CREATE DATABASE Example
ON PRIMARY
(NAME = example_dat,
FILENAME = 'D:\exmaple_dat.mdf',
SIZE = 10,
MAXSIZE = 50,
FILEGROWTH = 15%),
(NAME = example_second_dat,
FILENAME = 'E:\example_second_dat.ndf',
SIZE = 10,
MAXSIZE = 50,
FILEGROWTH = 15%)
LOG ON
(NAME = exmaple_log,
FILENAME = 'D:\example.log',
SIZE = 5,
MAXSIZE = 25,
FILEGROWTH = 5MB)
GO
现在,我想添加文件组DataFileGroup
并添加exmaple_dat
到example_second_dat
它。
请给我一个解决方案。
提前致谢 :)