Viewing 15 posts - 391 through 405 (of 455 total)
I do not have log shipping running anywhere to test this, but i will give you something to start with maybe...
select [name] from sys.databases where [name] not in (select primary_database...
October 12, 2010 at 9:11 am
is it high safety mode or high performance mode? or in other words, do you have a witness?
October 11, 2010 at 7:35 am
Since you are calling a SP inside the trigger all errors needs to be rolled back before you perform any writes.
try adding IF XACT_STATE() = -1 ROLLBACK to...
October 6, 2010 at 10:04 am
use xp_getfiledetails.
if your SQL version does not have the spoc, create it like this;
October 4, 2010 at 1:01 pm
OPENROWSET('SQLOLEDB','uid=sa;pwd=password;Network=WORKGROUP;Address=192.168.1.1,1434;timeout=5', 'SELECT * FROM MyTable')
is one way to pass a different port number.... see the comma.
The prefered way though would be to create a linked server entry and define your...
October 4, 2010 at 12:44 pm
shaun.stuart (10/1/2010)
Interesting that you assumed he was reindexing the mirrored database. I assumed the opposite -...
October 1, 2010 at 12:11 pm
shaun.stuart (10/1/2010)
October 1, 2010 at 11:26 am
winash (10/1/2010)
October 1, 2010 at 10:41 am
SQL* (9/23/2010)
is mirroring support : schema changes to mirror server
is log shipping support : Schema changes to secondary server
is replication...
October 1, 2010 at 6:59 am
he has too. the failover could not have occured with out it.
September 30, 2010 at 1:02 pm
database mirroring is done at the database level.
that said, i have seen many cases where a single instance that has many databases all mirrored start splitting up the way you...
September 30, 2010 at 12:39 pm
it was more of a comment to the person that said they did not like the fixed roles SQL offered.
If you want more fine tuned control of roles to msdb,...
September 30, 2010 at 12:23 pm
you could try 2 things;
1. under reporting Services Configuration manager, choose Database Setup and under the Server name, type in the port number is the standard SQL way, (local)\instance,5555
2. via...
September 30, 2010 at 12:03 pm
if you do not like the bult in Roles, create your own with the proper GRANTS;
USE [msdb]
GO
CREATE ROLE [TestRole1] AUTHORIZATION [dbo]
Go
--- Step 2 -------- Assign Permissions to role ------------
USE...
September 30, 2010 at 11:50 am
Viewing 15 posts - 391 through 405 (of 455 total)