I have a local copy of a SQL Server DB stored as an MDF file. Is there a way to tell what version of SQL Server was used to create that file?
I have a local copy of a SQL Server DB stored as an MDF file. Is there a way to tell what version of SQL Server was used to create that file?
Use RESTORE HEADERONLY, e.g.
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).
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.
For MDF files try this command:
It will output 3 properties with values:
Database name
,Database version
andCollation
.The syntax is following (the command is undocumented, therefore more info here):
Good question! I don't believe so, apart from the trial-and-error process of - say - trying to restore a SQL Server 2008 R2 backup file onto SQL Server 2005. Obviously, that won't work. I can't remember off-hand whether using Management Studio - and clicking on the contents button for a restore - will show you anything interesting.
I haven't tried them, but it's possible that a third party tool such as Red Gate's Virtual Restore will tell you - it allows you to look at the database "inside" the backup file. http://www.red-gate.com/products/dba/sql-virtual-restore/
You can find this using the information in the boot page of the database. I wrote about this at http://sankarreddy.com/2010/05/database-internal-version-create-version-and-current-version/
Best way I've ever seen to do this was gleaned from this post on the SQL Server MSDN forums.
Basically it involves getting into the file and examining the boot page of the mdf file.