SQL Server差异备份到SQL语句
有没有办法将差异备份转换为 SQL 语句,应用时会产生相同的结果?
或者有其他类似于MySQL中的二进制日志的解决方案吗?
Is there any way to convert differential backup to SQL statements which will produce identical results when applied?
Or any other solution similar to binary log in MySQL?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不会。SQL
Server 差异备份包含自上次完整备份以来已更改的页面。
这将与已经运行的SQL DML语句完全无关并且无法提取数据。
你想做什么?
No.
SQL Server differential backups contain those pages that have been changed since the last full backup.
This will be completely unrelated to SQL DML statements that have been run and the data can not be extracted.
What are you trying to do though?