INFORMATION_SCHEMA vs sysobjects

sql-server, sql-server-2005, sql-server-2008

Solution

The INFORMATION_SCHEMA is part of the SQL-92 standard, so it's not likely to change nearly as often as sysobjects.

The views provide an internal, system table-independent view of the SQL Server metadata. They work correctly even if significant changes have been made to the underlying system tables.

You are always much better off querying INFORMATION_SCHEMA, because it hides the implementation details of the objects in sysobjects.

Problem

In SQL Server: What is the difference between INFORMATION_SCHEMA and sysobjects? Does one provide more information than the other or are they used for different things usually? Is sysobjects the same as sys.objects? If not, what is the difference between these?

Original source