Viewing 15 posts - 1 through 15 (of 15 total)
I thought the changeowner sp was deprecated.
January 17, 2015 at 7:32 pm
I use a date column that changes regularly and compare that across the replication partners;
SELECT
MAX(LASTHANDLINGDATE) AS Source_LASTHANDLINGDATE
FROM [Source]
GO
SELECT
MAX(LASTHANDLINGDATE) AS Dest1_LASTHANDLINGDATE
FROM Dest1
GO
SELECT
MAX(LASTHANDLINGDATE) AS Dest2_LASTHANDLINGDATE
FROM Dest2
GO
December 19, 2013 at 8:03 am
Thank you, I just had to do that, it worked for me as well.
September 12, 2013 at 5:53 am
I played with all the scripts on this page and have looked before for something like this. This is beautiful.
October 18, 2012 at 2:57 pm
Do you have the mas90 driver installed on your laptop?
July 20, 2012 at 8:51 pm
Cool, I've never seen datacenter.
October 14, 2011 at 7:22 am
The parteners need to be on the same edition of SQL Server.
October 13, 2011 at 11:30 am
Best practices is to not enable the SA account at all, unless you actually need to use it due to your environment (non-Windows clients, legacy apps, etc). If you are...
August 4, 2011 at 9:27 am
I believe the 'trusted connection = yes' implies that the connection is be made using Windows authentication and is whatever account is used to logon.
August 2, 2011 at 7:54 am
Based on your setup, as a start, I would set my minimum and maximum SQL memory to 6GB, this leaves 2GB for your OS, then give the SQL Server service...
June 1, 2011 at 11:21 am
You would use the extension you give your backup files without the "." IE. bak or trn. You will also have to create a step for each different extension you...
April 18, 2011 at 9:01 am
I'm curious why you're doing this in C# and not just using the interface in SSMS?
Do you see anything in the SQL logs like this:
The mirroring connection to "TCP://myserver.mydoamin:5022" has...
March 29, 2011 at 10:12 am
You don't go into specifics about you setup but,
From:http://msdn.microsoft.com/en-us/library/ms366349(v=sql.90).aspx
On a 32-bit system, database mirroring can support a maximum of about 10 databases per server instance because of the...
March 16, 2011 at 11:30 am
Howard C. BAchtel-438731 (2/15/2011)
February 15, 2011 at 11:40 am
Why not turn the view into a table sql 2000
select *
into tabletocopy
from viewwithdata
Ralph
December 13, 2005 at 7:35 am
Viewing 15 posts - 1 through 15 (of 15 total)