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?

link|improve this question

feedback

5 Answers

up vote 1 down vote accepted

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.

link|improve this answer
feedback

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).

link|improve this answer
I was going to try this, but I don't have any backup devices set up :-(. Thanks for the suggestion, though! – Ben McCormack Apr 4 '11 at 19:55
feedback

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/

link|improve this answer
feedback

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/

link|improve this answer
feedback

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.