使用 SMO 更改数据文件 MaxSize
我正在尝试修改 sql 2008 数据文件的 Maxsize,但更改没有发生。
我正在使用这段代码:
FileGroupCollection fcoll = database.FileGroups;
foreach (FileGroup grp in fcoll)
{
foreach (DataFile fil in grp.Files)
{
fil.MaxSize = 1000;
}
}
我没有收到错误消息,但数据文件的最大大小没有改变。
对我做错了什么有什么建议吗? 谢谢。
I am trying to modify the Maxsize of an sql 2008 Datafile, but the change does not happend.
I`m using this code:
FileGroupCollection fcoll = database.FileGroups;
foreach (FileGroup grp in fcoll)
{
foreach (DataFile fil in grp.Files)
{
fil.MaxSize = 1000;
}
}
I get no error message, but the max size of the DataFile does not change.
Any suggestions to what I`m doing wrong?
Thanx.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要调用
Alter()
方法。You need to call the
Alter()
method.