Interessante articolo per la creazione e gestione dei content database di SharePoint
riporto gli script dovesse mai spartire l’articolo
Creating a Content Database
CREATE DATABASE WSS_Content_MSSQLTIPS
ON PRIMARY
( NAME = MSSQLTIPS_01_data,
FILENAME =
'F:\data\MSSQLTIPS_01_data.mdf',
SIZE = 20,
MAXSIZE = 40,
FILEGROWTH = 5 ),
( NAME = MSSQLTIPS_02_data,
FILENAME =
'G:\data\MSSQLTIPS_02_data.ndf',
SIZE = 20,
MAXSIZE = 40,
FILEGROWTH = 5 )
LOG ON
( NAME = 'MSSQLTIPS_log',
FILENAME =
'c:\data\MSSQLTIPS.ldf',
SIZE = 5MB,
MAXSIZE = 25MB,
FILEGROWTH = 5MB );
go
alter database WSS_Content_MSSQLTIPS
set single_user with rollback immediate
go
alter database WSS_Content_MSSQLTIPS
collate Latin1_General_CI_AS_KS_WS
go
alter database WSS_Content_MSSQLTIPS
set multi_user
go
Using the Content Database in a New Web Application
STSADM.EXE
-o extendvs
-url http://biwsssql2008:6666
-donotcreatesite
-exclusivelyusentlm
-databaseserver biwsssql2008
-databasename WSS_Content_MSSQLTIPS
-apidtype configurableid
-description MSSQLTIPS
-apidname MSSQLTIPS
-apidlogin biwsssql2008\spcontentpool
-apidpwd pass@word1
Moving Site Collections Between Content Databases
STSADM.EXE -o enumsites -url http://biwsssql2008:6666 > sites.xml
STSADM.EXE
-o mergecontentdbs
-url http://biwsssql2008:6666
-sourcedatabase <databasename>
-destinationdatabase <databasename>
-operation 3
-filename sites.xml
Technorati Tags:
SharePoint