Viewing 15 posts - 1 through 15 (of 37 total)
In 7/2000 there was a concept of "alternate sync partner" which was intended to handle disaster situations, but could work here as well. Bascially your local publishers would republish the...
August 31, 2006 at 8:04 am
This could be the result of a service pack mismatch between publisher and subscriber. Either way, re-applying the service pack with recreate the merge replication objects with their proper definition.
February 21, 2006 at 7:58 am
This could be the result of a service pack mismatch between publisher and subscriber. Either way, re-applying the service pack with recreate the merge replication objects with their proper definition.
February 21, 2006 at 7:54 am
Permissions should also be assigned directly to a Domain Local account. I think I recall an issue where SQL having trouble properly authenticating Global groups under some conditions.
The best practice...
December 9, 2005 at 7:57 am
Using two consecutive single-quotes should always work, where using double-quote to identify a string will be sensitive to the QUOTED_IDENTIFER setting, which I suspect you set to OFF. I'd recommened...
December 9, 2005 at 7:47 am
Your time may be better spent pushing for a move to SQL 2005. DDL Triggers are designed exactly for this purpose and make it very easy to log by querying...
December 9, 2005 at 7:40 am
Outstanding rant. In addition to providing some LOL entertainment, this is a great source of interview weed-out questions.
Well done!
August 18, 2005 at 10:56 am
You can use the sp_removedbreplication stored proc to remove all replication objects, including those used for your current publication. This is only an option is you are willling to create...
July 7, 2005 at 10:43 am
This is a hack and wouldn't be supported by MS, but you could create a merge publication and then remove the update and delete triggers that replication creates on each...
July 7, 2005 at 10:39 am
This is a great article on merge replication. If you do go with merge, get familiar with the metadata tables used by merge replication. Check out the topic "replication, performance"...
July 7, 2005 at 10:32 am
If having a read-only database serves your needs, you could implement a poor-man's log shipping by restoring transaction logs to the server using the STANDBY clause on the development server. ...
June 7, 2005 at 9:32 am
1- When using merge replication, a column with the property ROWGUIDCOL, along with a unique index is added to each published table. This can serve as your primary key on the...
June 7, 2005 at 9:21 am
I suspect the connection breaks and the continous agent is sitting there in a failed state waiting for a manual stop/start to reconnect it to the subscriber. After a server...
June 7, 2005 at 9:15 am
Somehow, two different subscribers must have inserted the same GUID in the column defined as ROWGUIDCOL on the same table. I'd say this is worth opening a support case to...
June 7, 2005 at 9:10 am
One option is to create the database on your subscriber yourself with the tables/indexes spread across filegroups as you wish. Then create your publication with options that state the subscriber...
June 7, 2005 at 8:54 am
Viewing 15 posts - 1 through 15 (of 37 total)