Forum Replies Created

Viewing 12 posts - 46 through 57 (of 57 total)

  • RE: Fun with ACID

    We have implemented triggers on the user tables & msmerge_tombstone table to differentiate between user deletes and system deletes and in the case of the latter save the data before...

  • RE: Fun with ACID

    One of my pet peeves with SQL Server is that it allows the silent violation of of the (d)urability principle.

    Consider SQL replication.

    An INSERT gets committed on the publisher. A full...

  • RE: Log size is Big

    If the database needs to be in FULL recovery (that means you need to be able to recover all or nearly all transactions during a restore) then you must run...

  • RE: TDE and SQL Server Databases

    Nice article.

    There's two more things that TDE does not protect...

    1) Data in memory. Anyone with access to RAM, or who can cause a core dump and grab a copy of...

  • RE: TDE and SQL Server Databases

    I've tested TDE with log shipping. It works fine with it. You just have to install the same certificate onto the secondary servers that protects the DEK of the database.

    I...

  • RE: SQL 2008 R2 - peer to peer replication

    Neither. I want the transactions serialized. That's why I always favor eliminating the possibility of conflicts by application partitioning, DML segregation, or both.

  • RE: SQL 2008 R2 - peer to peer replication

    It's the nature of the beast (2-way replication) regardless of the RDBMS. Collisions are going to happen. IMO if you can't come up with an algorithm to decide which client...

  • RE: Process to truncate transaction log of replicated database

    If it happens again do exactly what you did except for the backup log with truncate_only. Instead try this...

    1. backup log [dbname] ...

    2. use [dbname] dbcc shrinkfile (2) ...

  • RE: Process to truncate transaction log of replicated database

    I agree with Phil's comment. I dont see why "WITH TRUNCATE_ONLY" is necessary. This breaks the log chain and renders the publishing database unrecoverable. If you do this you should...

  • RE: Backup of standby database

    Another concern I have with replication are the infamous system deletes. MS in their infinite wisdom decided that keeping the publisher and subscriber in sync is more important than transaction...

  • RE: Backup of standby database

    I'm not a big fan of replication in any of its forms. I want this to be a worry free backup solution.

    Log shipping copies everything. Unless I am mistaken,...

  • RE: Backup of standby database

    Have you ever tested recovering from a standby database backed up in this manner? I'm working on a very similar backup strategy. The one thing I'm doing differently is that...

Viewing 12 posts - 46 through 57 (of 57 total)