Master rebuild and change check list
Posted by Simon Cho on 02/23/2012
Master DB rebuild and change check list
- backup login script http://support.microsoft.com/kb/918992
- backup linked server script
- Detach databases.
- Master rebuild whatever option
- create another instance and attach : make sure same file location of system DBs, msdb, master, tempdb(you can fix it later).
- single mode rebuild : http://blogs.msdn.com/b/psssql/archive/2008/08/29/how-to-rebuild-system-databases-in-sql-server-2008.aspx
- When you rebuild or attach master DB, you should know about sa password from original instance.
- SQL service pack update if different version.
- Attach databases
- If you move master database from other service, you should drop unnecessary databases.
- run #1 login script only for necessary account(s).
- change sa password if you want
- change master key with force option
https://simonsql.com/2012/02/23/an-error-occurred-during-decryption/
ALTER SERVICE MASTER KEY FORCE REGENERATE
- change server name
http://msdn.microsoft.com/en-us/library/ms143799.aspxuse master declare @srvname varchar(255), @new_srvname varchar(255) set @srvname = @@servername set @new_srvname = 'new hostname' --your computer hostname exec sp_dropserver @srvname exec sp_addserver @new_srvname, local go
- change server option if you want to change : sp_configure
- min max memory
- ad hoc query
- e.t.c.
Leave a Reply