Viewing 15 posts - 1,141 through 1,155 (of 1,157 total)
I dont think you've had any replies as this is not normal behaviour for replication.
Something or someone could well be causing this to happen by editing the publication...
October 7, 2010 at 12:49 pm
USE [BankLoans]
GO
/****** Object: StoredProcedure [dbo].[usp_insert_LoanOfficer] Script Date: 10/07/2010 09:58:15 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER PROCEDURE [dbo].[usp_insert_LoanOfficer]
-- Add the parameters for the stored procedure here
(
@LoanOfficerID int,
@BranchID int = 9,
@LoanOfficerNumber int...
October 7, 2010 at 12:38 pm
I wouldnt say Active/Active/Passive is frowned upon, it just isnt common. I set one of these up for my previous company as by virtue of legacy reasons their production...
October 7, 2010 at 6:05 am
A lot of this depends on your environment and SQL estate. If you have a small number of servers with a limited number of transactions I would say yes,...
October 6, 2010 at 11:44 am
amdavis (10/6/2010)
thanks,is there a query for maximum number of concurrent connections?
The maximum connections can be viewed by running this script on SQL Server.
--------------------------------------
exec sp_configure 'show advanced' , 1
reconfigure...
October 6, 2010 at 11:33 am
If you are not space constrained and it is imperative that you cannot have down time, I would consider creating a duplicate table based on the partition function of a...
October 6, 2010 at 11:25 am
An exact match works nicely with a look up and this can be configured to your "key" fields.
If you are using Enterprise edition you have the option of...
October 6, 2010 at 11:16 am
If you add the article using scripts and then generate the snapshot, the snapshot agent should only add the new articles and limit the impact to both the publisher and...
October 6, 2010 at 8:12 am
I dont know of any more from Microsoft. ApexSQL offer the Enforce product.
October 6, 2010 at 7:44 am
Previously I've done this in a three step approach in the following order DELETE, UPDATE and INSERT using a temporary/staging table.
/*Tableb is staging table, Tablea is live */
DELETE FROM tableA
FROM...
September 24, 2010 at 8:44 am
I have a schedule which scripts all objects in all db's using powershell. I'm sure you can find many articles online but this is one I quickly found that...
September 24, 2010 at 7:57 am
You have several options
-In SQL 2008 you have the option of using a table as a parameter Link
-You could make the temporary table Global (##temp) and wrap s1,s2,s3 and...
September 24, 2010 at 7:48 am
Sorry I should have posted both KB articles. We are on AMD also.
August 4, 2010 at 9:47 am
Microsoft have confirmed this was a problem with the Windows Server R2 kernel which is fixed in this KB article and hotfix.
August 4, 2010 at 8:43 am
Thanks for the reply.
I have since been working with Microsoft to find a resolution.
Our issue was resolved by enabling the "Lock Pages in Memory" windows security policy on...
August 2, 2010 at 3:20 am
Viewing 15 posts - 1,141 through 1,155 (of 1,157 total)