获得当前数据库对象依赖关系的实用算法
2009-05-12 20:41:40来源:未知 阅读 ()
本文主要介绍了一个获得当前数据库对象依赖关系的实用算法,具体示例请大家参考下文:
以下为引用的内容: create function udf_GenLevelPath() returns @v_Result table (LevelPath int,OName sysname) /****************************************************************/ /* 功能描述:按照依赖关系,列出数据库对象 */ /* 输入参数:无 */ /* 输出参数:按照依赖关系排列的数据库对象表,无依赖在前 */ /* 编写: anna*/ /* 时间:2007-12-12 */ /****************************************************************/ as begin declare @vt_ObjDepPath table (LevelPath int,OName sysname null) declare @vt_Temp1 table (OName sysname null) declare @vt_Temp2 table (OName sysname null) --依赖的级别,值越小依赖性越强 declare @vi_LevelPath int set @vi_LevelPath = 1 --得到所有对象,不包括系统对象 insert into @vt_ObjDepPath(LevelPath,OName) select @vi_LevelPath,o.name from sysobjects o where xtype not in ('S','X') --得到依赖对象的名称 insert into @vt_Temp1(OName) select distinct object_name(sysdepends.depid) from sysdepends,@vt_ObjDepPath p where sysdepends.id <> sysdepends.depid and p.OName = object_name(sysdepends.id) --循环处理:由对象而得到其依赖对象 while (select count(*) from @vt_Temp1) > 0 begin set @vi_LevelPath = @vi_LevelPath + 1 update @vt_ObjDepPath set LevelPath = @vi_LevelPath where OName in (select OName from @vt_Temp1) and LevelPath = @vi_LevelPath - 1 delete from @vt_Temp2 insert into @vt_Temp2 select * from @vt_Temp1 delete from @vt_Temp1 insert into @vt_Temp1(OName) select distinct object_name(sysdepends.depid) from sysdepends,@vt_Temp2 t2 where t2.OName = object_name(sysdepends.id) and sysdepends.id <> sysdepends.depid end select @vi_LevelPath = max(LevelPath) from @vt_ObjDepPath --修改没有依赖对象的对象级别为最大 update @vt_ObjDepPath set LevelPath = @vi_LevelPath + 1 where OName not in (select distinct object_name(sysdepends.id) from sysdepends) and LevelPath = 1 insert into @v_Result select * from @vt_ObjDepPath order by LevelPath desc return end go --调用方法 select * from dbo.udf_GenLevelPath() go |
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- 初探MS SQL CE+Codesmith 2009-05-12
- 实用技巧:优化SQL Server数据库查询方法 2009-05-12
- 浅析SQL Server三大算法的I/O成本 2009-05-12
- SQL提供的进行数据传输的实用程序—BCP 2009-05-12
- SQL Server 数据库操作实用技巧锦集 2009-05-12
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash