I\'ve noticed some strange behavior in SQL Server Express 2008, and I\'ve been trying to track down the cause. When you create a new database, you are able to access the sys
IIRC, SQL Server looks for objects in the following order:
sys
schemaIt's a special case. These are backward compatibility views.
In SQL 2000 it was not necessary to use the sys
schema so they made it so that existing code would still work for these objects.
These have all been replaced with new system views and functions and are slated to be removed in a future version of SQL Server so should be avoided where possible (see the topic "Mapping System Tables to System Views" in BOL for details). Though there are some circumstances in which they are still required.