首页 > 开发 > 综合 > 正文

分析数据库的依赖关系

2024-07-21 02:12:45
字体:
来源:转载
供稿:网友
,欢迎访问网页设计爱好者web开发。

有一个非常好的系统存储过程会帮助你分析数据库的依赖关系,它就是:sp_depends。这个过程会指出哪些数据库对象依赖于对应的数据库对象,和哪些数据库对象为对应的数据库对象引用了。

 
    如果所有的对象按依赖顺序创建的,那么这个系统存储过程会更鲁棒。那些依赖于其他对象的对象总是在它们引用的对象之后创建的。

       使用这个过程的一个原因是为了确定一个过程或者表的变化的影响。如果你有一个对象,它引用了30个对象,那么很有可能在编码期间,你为了改变这30个对象而须做更多的工作。

    下面的脚本展示一个存储过程和一些对象,这个存储过程引用了一些对象,其他对象又引用了这个存储过程。

if exists(select name
       from    sysobjects
       where    name = n'test_table'
       and    type = 'u')
    drop table test_table
go
create table test_table (
c1 varchar(255) null)
go
if exists (select name
       from    sysobjects
       where    name = n'test_proc1'
       and    type = 'p')
    drop procedure test_proc1
go
create procedure test_proc1 @name sysname = null
as
if @name is not null
begin
       insert test_table values (@name)
end
else
begin
       return
end
go
if exists (select name
       from    sysobjects
       where    name = n'test_proc2'
       and    type = 'p')
    drop procedure test_proc2
go
create procedure test_proc2
as
declare @myvar sysname
select @myvar = name from sysobjects where id = 1
exec test_proc1 @myvar
go
exec sp_depends test_proc1
go
drop procedure test_proc2, test_proc1
go
drop table test_table
go

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表