SQL Server differential backup to SQL statements

285 Views Asked by At

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?

1

There are 1 best solutions below

2
On BEST ANSWER

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?