Using Visual Web Developer 2008 which comes with SQL Server 2008 by default. Is there a way to change a SQL2008 database to SQL2005 version from within Visual Web Developer?
Cheers
Using Visual Web Developer 2008 which comes with SQL Server 2008 by default. Is there a way to change a SQL2008 database to SQL2005 version from within Visual Web Developer?
Cheers
SSMS
How to: View or Change the Compatibility Level of a Database (SQL Server Management Studio)
EDIT:
Since you don't have SSMS (why not?) you can also issue this command to set the compatibility of a database to SQL 2005.
ALTER DATABASE [DATABASE_NAME] SET COMPATIBILITY_LEVEL = 90