Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Those numbers seem backwards but anyway <code>downgrade path is not supported</code> is the key sentence. </p> <p>Based on that error message you are trying to do something like attach a SQL Server 2008 R2 database to a SQL Server 2008 instance. That is not possible. You cannot attach a newer database <code>.MDF</code> to an older platform. </p> <p>See this link for <a href="http://weblogs.sqlteam.com/dang/archive/2011/07/17/internal-sql-server-database-version-numbers.aspx" rel="nofollow">internal version numbers</a>:</p> <p>Check your instance to make sure that it actually is 2008R2.</p> <pre><code>Select SERVERPROPERTY('productversion') As [Version], SERVERPROPERTY('productlevel') As [Level], SERVERPROPERTY('edition') As [Edition] </code></pre> <p>And then cross reference with this:</p> <ul> <li>10.5.1600.1 Microsoft SQL Server 2008 R2 </li> <li>10.50.2500.0 Microsoft SQL Server 2008 R2 SP1 </li> <li>10.00.1600 Microsoft SQL Server 2008 </li> <li>10.00.2531.00 Microsoft SQL Server 2008 SP1 </li> <li>10.00.4000.00 Microsoft SQL Server 2008 SP2 </li> <li>10.00.5500.00 Microsoft SQL Server 2008 SP3 </li> <li>9.00.1399 Microsoft SQL Server 2005 RTM </li> <li>9.00.2047 Microsoft SQL Server 2005 SP1 </li> <li>9.00.3042 Microsoft SQL Server 2005 SP2 </li> <li>9.00.3042.01 Microsoft SQL Server 2005 SP2a </li> <li>9.00.4035 Microsoft SQL Server 2005 SP3</li> </ul> <p>Or look directly into your <a href="http://support.microsoft.com/kb/321185" rel="nofollow">installed instances like this</a>.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload