tpeugh


I currently use MSDE and now I need to upgrade because we moved to 2005. The problem for me is teh compatibility mode. I need to change it to 80 (2000).

I also need to do it via command line because we have a base command line install for users.

We use it to attach databases and view information.

Is there a way to install SQL Express with a default mode of 80 (SQL 2000).

THanks




Re: SQL Express compatibility mode

Arnie Rowland


I believe that if you 'Upgrade' an MSDE installation, and/or if you attach a SQL 2000 database to SQL Express, the compatibility is automatically set at [80].

If you need a 'tool' to manage your SQL Express installation -rather than be limited to command lines only, you may wish to check out the SQL Server Management Studio -Express version.

SQL Server 2005 Express Edition (Advanced/SSMS)
http://tinyurl.com/yelwr9

SQL Server 2005 SSMS Express Tutorial
http://tinyurl.com/nqsca







Re: SQL Express compatibility mode

Andrea Montanari

hi,

tpeugh wrote:

I currently use MSDE and now I need to upgrade because we moved to 2005. The problem for me is teh compatibility mode. I need to change it to 80 (2000).

as Arnie already pointed out, databases "upgraded" to SQLExpress\SQL Server 2005 version are not directly updated in the compatibility property, which remains 80

I also need to do it via command line because we have a base command line install for users.

We use it to attach databases and view information.

if you need to check/set this property via "command line" tools, you can via SqlCmd.exe and/or oSql.exe, executing the system stored procedure sp_dbcmptlevel ..

Is there a way to install SQL Express with a default mode of 80 (SQL 2000).

no, fortunately

regards