gpt4 book ai didi

stored-procedures - Sybase:获取使用特定表的存储过程列表

转载 作者:行者123 更新时间:2023-12-04 00:08:19 25 4
gpt4 key购买 nike

我在 Sybase 数据库中有 500 个存储过程。使用 SQL,我可以获得使用特定表的所有存储过程的列表,比如 tbl_books ?

最佳答案

使用这样的东西:

Select distinct sysobjects.name
, case
when sysobjects.type = 'TR' then 'TRIGGER'
when sysobjects.type = 'P' then 'PROCEDURE'
when sysobjects.type = 'V' then 'VIEW'
else 'UNKNOWN' end type
from sysobjects inner join syscomments
on sysobjects.id = syscomments.id
where syscomments.text like '%tbl_books%'

关于stored-procedures - Sybase:获取使用特定表的存储过程列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3148698/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com