It's actually quite simply if you tried it
1. Create a New Operator
SQL Server Agent -> Operators -> right-click -> New Operator
2. Choose a Name (e.g. "Group") and enter multiple emails in the E-mail name: field, separated by ;
a@gmail.com; b@gmail.com
3. In your SQL Job Notification, select "Group" as Operator and that's it
Source
http://www.dbanation.com/?p=416
Thursday, March 8, 2012
Monday, January 23, 2012
Restoring SYSTEM databases
I had the opportunity to restore a few system databases due to disk inconsistency/corruption. Actually my first time in a long time and was it fun. I have a few tips to share
All below were done on a SQL Server 2005 instance
Restoring MASTER Database!!
- start SQL Server in Single User mode (add -m to the startup parameter)
- You can Google this with lots of results. Microsoft How to on SQL 2008 R2
Restoring MSDB Database
- This is easy, just restore like a user database
Restoring MODEL Database!
- Restore model in RECOVERY mode, never in NORECOVERY mode as SQL Server will stop (due to tempdb unable to create, without a model database)
- If you did NORECOVERY, the only way to get in is manual work.
For me, I started it and detach-and-attach the model database that I copy from another location, as one cannot issue RESTORE command in Single-User mode
net start MSSQLSERVER /c /m /T3608 (you can go into SQL BINN and run sqlserver -c -m -T3608 as well)
sqlcmd -E (to connect to the SQL Server)
Detach and Re-attach model databasesp_detach_db 'model'
go
sp_attach_db 'model', 'DATA.mdf', 'LOG.ldf'
go
use model
go
All below were done on a SQL Server 2005 instance
Restoring MASTER Database!!
- start SQL Server in Single User mode (add -m to the startup parameter)
- You can Google this with lots of results. Microsoft How to on SQL 2008 R2
Restoring MSDB Database
- This is easy, just restore like a user database
Restoring MODEL Database!
- Restore model in RECOVERY mode, never in NORECOVERY mode as SQL Server will stop (due to tempdb unable to create, without a model database)
- If you did NORECOVERY, the only way to get in is manual work.
For me, I started it and detach-and-attach the model database that I copy from another location, as one cannot issue RESTORE command in Single-User mode
net start MSSQLSERVER /c /m /T3608 (you can go into SQL BINN and run sqlserver -c -m -T3608 as well)
sqlcmd -E (to connect to the SQL Server)
Detach and Re-attach model databasesp_detach_db 'model'
go
sp_attach_db 'model', 'DATA.mdf', 'LOG.ldf'
go
use model
go
Command line parameter | Use |
---|---|
-c | Forces an instance of SQL Server not to start as a service. |
-m | Allows updates to the system catalog. |
-T3608 | Recovers the master database only. |
Subscribe to:
Posts (Atom)