May 3, 2009 at 6:41 pm
If you set the Compaiblity Level to 80 for a database in SQL Server 2005, what do you miss out on?
May 3, 2009 at 7:28 pm
The engine interprets SQL code as if it were SQL 2000 code, so you can't run any 2005 functions. As far as performance improvements in how the tables, indexes, backups, etc. work, those perform at 2005 levels.
It just changes the way the query processor interprets and allows SQL code.
May 3, 2009 at 8:13 pm
This link should give you a good idea on the differences between the compatibility modes.
http://msdn.microsoft.com/en-us/library/ms178653(SQL.90).aspx
May 4, 2009 at 8:55 am
Another thing you will notice is that you cannot run Standard Reports from Management Studio on a level 8.0 database.
May 4, 2009 at 8:59 am
You cant run any sql2005 functions
[font="Comic Sans MS"]+++BLADE+++[/font]:cool:
May 4, 2009 at 3:48 pm
Thanks guys 🙂
May 4, 2009 at 3:54 pm
one of the interesting things about 90 is that it can treat bit fields as true, false, or NULL (rather than just true or false)
----------------------------------------------------
Viewing 7 posts - 1 through 6 (of 6 total)
You must be logged in to reply to this topic. Login to reply