惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

宝玉的分享
宝玉的分享
NISL@THU
NISL@THU
E
Exploit-DB.com RSS Feed
L
LINUX DO - 热门话题
L
Lohrmann on Cybersecurity
K
Kaspersky official blog
Project Zero
Project Zero
Cisco Talos Blog
Cisco Talos Blog
T
The Exploit Database - CXSecurity.com
P
Palo Alto Networks Blog
C
CXSECURITY Database RSS Feed - CXSecurity.com
T
Threatpost
S
Schneier on Security
G
GRAHAM CLULEY
The Hacker News
The Hacker News
T
Threat Research - Cisco Blogs
Scott Helme
Scott Helme
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
P
Privacy & Cybersecurity Law Blog
C
Cyber Attacks, Cyber Crime and Cyber Security
Cyberwarzone
Cyberwarzone
C
CERT Recently Published Vulnerability Notes
T
Tor Project blog
AWS News Blog
AWS News Blog
Simon Willison's Weblog
Simon Willison's Weblog
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
爱范儿
爱范儿
P
Privacy International News Feed
云风的 BLOG
云风的 BLOG
P
Proofpoint News Feed
S
Securelist
G
Google Developers Blog
The Last Watchdog
The Last Watchdog
Google Online Security Blog
Google Online Security Blog
美团技术团队
F
Fortinet All Blogs
小众软件
小众软件
Recorded Future
Recorded Future
V
Visual Studio Blog
B
Blog RSS Feed
H
Help Net Security
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
Google DeepMind News
Google DeepMind News
Blog — PlanetScale
Blog — PlanetScale
博客园 - 聂微东
Stack Overflow Blog
Stack Overflow Blog
Martin Fowler
Martin Fowler
Latest news
Latest news
Spread Privacy
Spread Privacy
H
Heimdal Security Blog

博客园 - 狂笑人生

SQL SERVER 2008 开发系列(十五) SQL SERVER 2008 开发系列(十三) SQL SERVER 2008 开发系列(十二) SQL SERVER 2008 开发系列(十) SQL SERVER 2008 开发系列(十一) SQL SERVER 2008 开发系列(九) SQL SERVER 2008 开发系列(八) SQL SERVER 2008 开发系列(七) SQL SERVER 2008 开发系列(五) SQL SERVER 2008 开发系列(六) - 狂笑人生 SQL SERVER 2008 开发系列(四) - 狂笑人生 SQL SERVER 2008 开发系列(三) SQL SERVER 2008 开发系列(二) SQL SERVER 2008 开发系列(一)B - 狂笑人生 SQL SERVER 2008 开发系列(一) - 狂笑人生 浅析逻辑数据映射[转载] - 狂笑人生 浅析实时ETL的架构选择[转载] - 狂笑人生 数据库性能优化 - 狂笑人生 数据挖掘技术 - 狂笑人生
SQL SERVER 2008 开发系列(十四)
狂笑人生 · 2008-09-16 · via 博客园 - 狂笑人生

T-SQL依赖项

/**********************************************************
Author="WZ"
Create Date="2008/9/7"
SQL SERVER 2008 开发系列(十四) T-SQL依赖项
**********************************************************/

USE AdventureWorks
GO

--sys.sql_dependencies 元数据视图
--数据库对象依赖关系
SELECT DISTINCT OBJECT_NAME(object_id) AS '引用对象',
    OBJECT_SCHEMA_NAME(referenced_major_id) + '.' +
    OBJECT_NAME(referenced_major_id) AS '被引用对象'
FROM  sys.sql_dependencies
WHERE object_id = object_id('HumanResources.vEmployee')
GO

--sys.sql_expression_dependecies 元数据视图
SELECT OBJECT_NAME(referencing_id) AS '引用对象',
    referenced_schema_name + '.' + referenced_entity_name AS '被引用对象'
FROM sys.sql_expression_dependencies
WHERE referencing_id = OBJECT_ID(N'HumanResources.vEmployee');

GO

--sys.dm_sql_referenced_entities 引用实体管理函数
--查看HumanResources.vEmployee视图依赖的数据列
SELECT referenced_schema_name + '.' + referenced_entity_name
       + '.' + referenced_minor_name AS '视图引用列'
    FROM sys.dm_sql_referenced_entities(N'HumanResources.vEmployee', 'OBJECT')
    WHERE referenced_minor_id <> 0
GO

--查看Person.Contact视图依赖的数据列
SELECT referencing_schema_name + '.' + referencing_entity_name AS '表相关对象'
    FROM sys.dm_sql_referencing_entities('Person.Contact', 'OBJECT')
GO