Forum Replies Created

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

  • RE: Log Shipping vs. Replication

    A few random extra points: there are some issues with snapshots for reporting purposes - you can't back them up and you can't use FTI for your reporting. Conversely, FTI is supported...


    Paul Ibison
    Paul.Ibison@replicationanswers.com

  • RE: Log Shipping vs. Replication

    Correct - the article was written 2 years ago and has been reposted.

    I'll work on an update which brings database mirroring / database snapshots into the equation, and also...


    Paul Ibison
    Paul.Ibison@replicationanswers.com

  • RE: Using Replication to turn an update into an insert on Subscriber

    Alternatively you could capture the update in a publisher trigger and write to an audit table, and then replicate this table as per usual. Not as performant as the previous...


    Paul Ibison
    Paul.Ibison@replicationanswers.com

  • RE: Can starting a snapshot cause blocking?

    If you're using transactional replication on SQL Server 2005, there is an alternative option that'll avoid the problems you face - you can initialize a subscriber using a backup of...


    Paul Ibison
    Paul.Ibison@replicationanswers.com

  • RE: Determining the success and frequency of Replication

    For the replication frequency, please look at the schedule of the synchronizing agent (merge or distribution, depending on your type of replication).

    The agent history will tell you if there...


    Paul Ibison
    Paul.Ibison@replicationanswers.com

  • RE: Question about schema changes in a Transactional Replication setup

    Please have a look at this article for more info: http://www.replicationanswers.com/AddColumn.asp

    Rgds,

    Paul Ibison, SQL Server MVP


    Paul Ibison
    Paul.Ibison@replicationanswers.com

  • RE: Replication error ??? Please help

    You'll need to use queued updating subscribers.

    Rgds,

    Paul Ibison (www.replicationanswers.com)


    Paul Ibison
    Paul.Ibison@replicationanswers.com

  • RE: time default before repl requires re-sync?

    The three factors to consider are the transaction retention period, the publication retention and the history retention. If they're all longer than the timeout then you're ok. To check, run

    sp_helpdistributor...


    Paul Ibison
    Paul.Ibison@replicationanswers.com

  • RE: New table to be replicated...

    It depends on what your replication setup is like as to whether a complete snapshot is created. By default, using sp_addarticle in transactional replication, followed by running the snapshot agent,...


    Paul Ibison
    Paul.Ibison@replicationanswers.com

  • RE: Indexing Strategy with Replication

    Merge replication relies on uniqueness of GUIDS so there is a unique index placed on the GUID column (having the rowguid attribute) but this is not the same as a...


    Paul Ibison
    Paul.Ibison@replicationanswers.com

  • RE: Moving Merge Publisher

    The servername is hardcoded into too much metadata to be able to move the publisher from one server to another and have it work, unless the names are identical. In...


    Paul Ibison
    Paul.Ibison@replicationanswers.com

  • RE: Moving Merge Publisher

    Recreating from scratch and having all the subscribers resubscribe would definitely work but would be my last resort. If you can create the new server with the same name as...


    Paul Ibison
    Paul.Ibison@replicationanswers.com

  • RE: How to store & retrieve mulilingual data from sql server

    Have a look in BOL (Books on line) for unicode. Really the multiple language requirements are satisfied using unicode datatypes. The collation in this case will be relevant for specifying...


    Paul Ibison
    Paul.Ibison@replicationanswers.com

  • RE: Schema Replication

    As we can't put triggers on system tables, I would think that only polling solutions would be applicable.

    Incidentally, you probably know this, but there are already applications (eg Redgate)...


    Paul Ibison
    Paul.Ibison@replicationanswers.com

  • RE: Replicate tables, stored proc''''s and DTS Packages?

    Replicating tables and stored procs is the same in SQL 2005 as it was in SQL 2000 - transactional, snapshot, merge etc. There are loads of new features, and one...


    Paul Ibison
    Paul.Ibison@replicationanswers.com

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