I need to restore SQL Server 2008 R2 Backup to SQL Server 2008, but as you know, it's not possible. So, I decided to upgrade my SQL 2008 to R2 but I don't know which instance to select in Instance to upgrade that contains ("MSSQLSERVER","SQLEXPRESS","<<Upgrade shared features only>>"
|
|
|||
|
|
migrated from stackoverflow.com Dec 18 '12 at 16:55
|
Most likely the first one "MSSQLSERVER". Thats the default name for a new installation. The express one is the free version and limits your DB size to 10GB. The 3rd one isn't an instance, just shared components so ignore that one. You should verify by logging into the server from SSMS and typing in |
||||
|
|
|
There is a way to get the data from a SQL Server 2008 R2 instance to SQL Server 2008/2005 (I had to do this a few weeks ago).
I did have a few issues getting the data to go across properly at first, but in the end, I did have a working database and the application that used it could use it properly. It IS a long way of doing things, but if you find yourself in a bind, this is a way out. This question was helpful when I was working through the same issue you have: http://stackoverflow.com/questions/159038/can-foreign-key-constraints-be-temporarily-disabled-using-t-sql |
|||
|
|