noonex
noonex

Reputation: 2075

SQL Server differential backup to SQL statements

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?

Upvotes: 1

Views: 284

Answers (1)

gbn
gbn

Reputation: 432210

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?

Upvotes: 1

Related Questions