Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
对于内容数据库备份(2010 数据库迁移过程的一部分),如何在备份期间将 SharePoint 2007 内容数据库设置为“只读”?
在查询窗口中,您将:
ALTER DATABASE <dbname> SET READ_ONLY;
并恢复:
ALTER DATABASE <dbname> SET READ_WRITE;
如果您真的想使用 GUI 执行此操作,请右键单击数据库,选择属性,移动到 Options 选项卡,然后向下滚动到 State 部分。在那里,您可以选择Database Read-Only并将其设置为 True 或 False。
Database Read-Only