Use SQL Server metadata to list tables that constitute a view

Source: Internet
Author: User

In general, you can access SQL Server metadata through a system stored procedure or information_schema view. When a query window is used, the system stored procedures are perfect and optimized for a database administrator, but not all of them apply to applications.ProgramThis is because you may be asked to further filter information and thus reduce performance. Therefore, I decided to obtain the required information from the information_schema view of SQL Server.

In the following example, I will obtain basic table information for the 'vemployee' view of the 'adventureworks' database.

Obtain the syntax and example of a basic table in a view.

-- Syntax to get base tables for a view
Use dbname

Go

Select view_name, table_name

From information_schema.view_table_usage

Where view_name = 'vemployee'

Order by view_name, table_name

Go

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.