sql server - Changing database version in Visual Web Developer 2008 -
Using Visual Web Developer 2008, which comes with SQL Server 2008 by default. Is there a way to convert SQL2008 database from Visual Web Developer into SQL2005 version?
Cheers
SSMS
Edit:
You do not have an SSMS (Why not?) You can also issue this command to set the compatibility of the database in SQL 2005.
ALTER DATABASE [DATABASE_NAME] SET COMPATIBILITY_LEVEL = 90
Comments
Post a Comment