首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

已知表名,怎么获取该表的依赖表

2012-03-19 
已知表名,如何获取该表的依赖表?RT[解决办法]SQL codeexec sp_depends 已知表名[解决办法]如果查外健关

已知表名,如何获取该表的依赖表?
RT

[解决办法]

SQL code
exec sp_depends '已知表名'
[解决办法]
如果查外健关系: 
create table t1(ID int primary key ) 

create table t2(ID int constraint FK_t2 foreign key references t1(ID)) 


select
object_name(fkeyID),object_name(rkeyID)
from
sysforeignkeys
where
fkeyID=object_id( 't2 ')

热点排行