Forum Replies Created

Viewing 15 posts - 1 through 15 (of 37 total)

  • RE: 1 Subscriber with 2 Publishers !!

    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...

  • RE: sp_MSsetrowmetadata has too many arguments specified

    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.

     

  • RE: sp_MSsetrowmetadata has too many arguments specified

    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.

     

  • RE: Authentication Problems

    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...

  • RE: Embedding Single Quote in text string in INSERT INTO value

    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...

  • RE: Best way to audit table updates

    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...

  • RE: How do you spell S-Q-L?

    Outstanding rant.  In addition to providing some LOL entertainment, this is a great source of interview weed-out questions.

    Well done!

  • RE: Delete System views in Replication

    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...

  • RE: Replication for trigger data

    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...

  • RE: White Papers

    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"...

  • RE: Replicating to a development database

    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. ...

  • RE: Turning off DELETE on an SQL2000 Replication

    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...

  • RE: merge replication - dropper subscription

    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...

  • RE: What is best way to resolve replication error

    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...

  • RE: Replication and filegroups

    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...

Viewing 15 posts - 1 through 15 (of 37 total)