SQL statement: displays information in all tables in SQL Server.

Source: Internet
Author: User
Displays information about all tables or views in a database of an SQL Server.
The difference between SQL Server 2000 and 2005 lies in the red part.
The following statement is used to obtain information about all tables. Replace "U" with "v" with "U" to obtain information about all views.

SQL Server 2000

Select sysobjects. Name as table_name, syscolumns. ID, syscolumns. Name as column_name,
Policypes. Name as data_type, syscolumns. length as character_maximum_length,
Sysproperties . [Value] As column_description, syscomments. Text
Column_default, syscolumns. isnullable as is_nullable from syscolumns
Inner join policypes
On syscolumns. xtype = policypes. xtype
Left join sysobjects on syscolumns. ID = sysobjects. ID
Left Outer Join Sysproperties On
( Sysproperties. smallid = Syscolumns. colid
And Sysproperties. ID = Syscolumns. ID)
Left Outer Join syscomments on syscolumns. cdefault = syscomments. ID
Where syscolumns. ID in
(Select ID from sysobjects where xtype =' U ') And (policypes. Name <> 'sysname ')
Order by syscolumns. colid

SQL Server 2005

Select sysobjects. Name as table_name, syscolumns. ID, syscolumns. Name as column_name,
Policypes. Name as data_type, syscolumns. length as character_maximum_length,
SYS. extended_properties . [Value] As column_description, syscomments. Text
Column_default, syscolumns. isnullable as is_nullable from syscolumns
Inner join policypes
On syscolumns. xtype = policypes. xtype
Left join sysobjects on syscolumns. ID = sysobjects. ID
Left Outer Join SYS. extended_properties On
( SYS. extended_properties.minor_id = Syscolumns. colid
And SYS. extended_properties.major_id = Syscolumns. ID)
Left Outer Join syscomments on syscolumns. cdefault = syscomments. ID
Where syscolumns. ID in
(Select ID from sysobjects where xtype =' U ') And (policypes. Name <> 'sysname ')
Order by syscolumns. colid


Refer:Http://www.devx.com/tips/Tip/31235? Type = kbarticle & TRK = mscp

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.