Domanda

sul mio server farm e Web SharePoint 2010.Ho un numero di siti diversi. Prod SharePoint, Mysite, un hub contentType separato e un DB allegato di un sito 2007.

Voglio spostare il DB del contenuto del sito Allegato 2007 su un'altra unità sul server SQL attraverso un processo di stacca / allegata.Questo sito è solo per i vecchi dati archiviati e raggiunge raramente (principalmente per audit).

Per avviare il distacco, devo spegnere tutti i servizi IIS sul mio server Web SP o posso semplicemente interrompere il "sito" sotto il gestore IIS, senza influire sul resto della produzione?

È stato utile?

Soluzione

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.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a sharepoint.stackexchange
scroll top