开发者

Log Shipping - Ignore deletions on a specific table

开发者 https://www.devze.com 2023-04-12 00:16 出处:网络
I\'ve got a scenario where I have a database with one table that gets tons of inserts, and it\'s vital that the performance is excellent for those inserts.

I've got a scenario where I have a database with one table that gets tons of inserts, and it's vital that the performance is excellent for those inserts.

I also have a lot of reports, some of which hit that table.

Thus, I want to create a reporting database, which can lag the primary database a little, that I can use for running queries, so the reports don't impact the performance of the primary table.

Sheer size is also a concern - I want to keep all the history for the reports, but the transacti开发者_Go百科on table only needs the last day or two, tops.

I was considering log shipping - it'll let me easily replicate all the tables in the system, so I can keep things in sync easily - but I want to be able to delete the "extra" records from the primary table to ensure it stays snappy, yet leave them in the reporting database.

Is there any way to configure log shipping for a specific table to not ship delete requests? If not, anyone have a nice suggestion for this (other than "write a script that runs every day")?


Nope. Log shipping is designing to replicate the entire database. There's no way to use log shipping to keep the entire history of your table while deleting it out - you're going to have to write something custom.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号