문제

내 SharePoint 2010 팜 및 웹 서버에서.나는 여러 개의 다른 사이트가 있습니다. Prod SharePoint, MySite, 별도의 ContentType 허브 및 2007 사이트의 첨부 된 DB.

Detach / Attach 프로세스를 통해 첨부 된 2007 사이트의 콘텐츠 DB를 SQL Server의 다른 드라이브로 이동하려고합니다.이 사이트는 오래된 아카이브 된 데이터 만 있으며 거의 액세스 할 수 없습니다 (주로 감사용).

Detach를 시작하려면 SP 웹 서버에서 모든 IIS 서비스를 종료하거나 나머지 프로덕션에 영향을주지 않고 IIS 관리자 아래의 '사이트'를 중지 할 수 있습니까?

도움이 되었습니까?

해결책

Set the database to read-only mode and that should be enough. No need to stop IIS site.

UPDATE

To set the database readonly using SQL Query use:

ALTER DATABASE DBName SET READ_ONLY

Same task can be performed by selecting the database in SQL management studio. Right click on the database, select properties, then select options, scroll down to State section and change Database Read-only prperty to true.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 sharepoint.stackexchange
scroll top