Is there a way to determine the version of SQL Server that was used to create an MDF or BAK file?

You can determine the version of the primary MDF file of a database by looking at the two bytes at offset 0x12064. See How to determine the database version of an MDF file.

In .bak files lower byte is 0xEAC and higher is 0xEAD.

You can find most internal database version numbers for MS SQL here.


Use RESTORE HEADERONLY, e.g.

RESTORE HEADERONLY FROM DISK = 'D:\whatever.bak'

You'll get a lot of columns, but the ones of interest are SoftwareVersionMajor, SoftwareVersionMinor, and SoftwareVersionBuild, which should give you the version number of SQL Server. On our system, for example, these are 10, 0, and 4000, meaning 10.0.4000 (2008 SP2).

Not sure what happens if you try to do this with a backup that's too old to be restored on the version the server is running, however - you might just get an error and no info (though that in itself would at least provide some clues on the version it's from).