Viewing 15 posts - 136 through 150 (of 501 total)
If you already have log shipping setup, then you just need to:
1. Restore all the tran log backups from the primary to the secondary
2. Backup the tran log on the...
November 22, 2011 at 3:28 pm
This msdn article should give you all the info you need to failover.
November 22, 2011 at 2:51 pm
An example of when you "have" to use it would be a requirement from a 3rd party. SAP requires xp_cmdshell be enabled and permission to execute it be granted to...
October 7, 2011 at 3:13 pm
After enabling the mail profile in SQL Agent, you need to restart SQL Agent. A restart of SQL Agent should resolve your issue.
October 6, 2011 at 3:56 pm
Yuri55 (9/28/2011)
Sorry, but frankly I confused with your recommendation "Keep the witness in the same site as your principal database"
(and certainly I know that per BOL MS "We strongly recommend...
September 28, 2011 at 2:37 pm
But if the witness and the principle become unavailable, the mirror will automatically realize it and become the principle?
No, there needs to be a quorum for automatic failover to happen....
September 28, 2011 at 2:23 pm
Keep the witness in the same site as your principal database. If the principal loses connection with both the witness and the mirror the principal database will become unavailable. This...
September 28, 2011 at 2:07 pm
SQLRNNR (8/22/2011)
It will work either way (with or without the linefeed) - query results options play a difference though.
I double checked in SSMS 2008R2 and it appears correct, however, if...
August 22, 2011 at 4:57 pm
Guess it needs the line feed also. This should do it.
select 'USE ['+name +']' + CHAR(13)+CHAR(10)+'GO'+ CHAR(13)+CHAR(10)+
'CREATE USER [abc\scott] FOR LOGIN [abc\scott]'+ CHAR(13)+CHAR(10)+'GO'+ CHAR(13)+CHAR(10)+
'USE ['+name +']' + CHAR(13)+CHAR(10)+'GO'+ CHAR(13)+CHAR(10)+
'EXEC sp_addrolemember...
August 22, 2011 at 4:49 pm
select 'USE ['+name +']' + CHAR(13)+'GO'+ CHAR(13)+
'CREATE USER [abc\scott] FROM LOGIN [abc\scott]'+ CHAR(13)+'GO'+ CHAR(13)+
'USE ['+name +']' + CHAR(13)+'GO'+ CHAR(13)+
'EXEC sp_addrolemember N''db_owner'',N''abc\scott''' + CHAR(13)+'GO'+ CHAR(13)
FROM sys.databases
WHERE database_id>4
Run the above with results...
August 16, 2011 at 5:30 pm
Was the SQL Agent restarted after the db mail profile was enabled for it? If not, you should see something like "An attempt was made to send an email when...
August 15, 2011 at 5:37 pm
In SQL 2008 they are located in ReportServer.dbo.DataSource
Here is a pretty thorough guide to migrating from 2005 to 2008.
August 10, 2011 at 3:23 pm
I've seen this with Quest Spotlight as well.
August 10, 2011 at 3:07 pm
Viewing 15 posts - 136 through 150 (of 501 total)