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

Popular posts from this blog

.net - C# List<T>.Find(x=>x.Rectangle.Contains(Point)) FAIL -

iphone - Smoothing a rounded stroke in Core Graphics -

c++ - QtQuick: QQmlApplicationEngine failed to load component qrc:/main.qml:23 Invalid attached object assignment -