表的名称和名称sql server 2005 存储过程中的视图
我有一个存储过程,我想知道该存储过程中使用的表和视图的名称,任何人都可以建议我该怎么做。
提前致谢。
I have a stored procedure, I want to know the name of the tables and views use in that stored procedure, can any one suggest how can I do so.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用
sp_depends
但这取决于最新的依赖项信息。如果缺少任何依赖项信息,则在数据库中的所有对象上运行
sp_refreshsqlmodule
可以更新此信息。You can use
sp_depends
but this depends on the dependency information being up to date.Running
sp_refreshsqlmodule
on all objects in the database can update this if there is any missing dependency information.有几种技术
我使用 sys.sql_dependency 和 sp_refreshsqlmodule 来确保在查询之前依赖项信息是最新的元数据。
There are several techniques
I use sys.sql_dependencies and sp_refreshsqlmodule to ensure that the dependency information is up to date before querying the metadata.
查找与以下内容相关的 Sp 表单数据库(使用)表XXX
Find Sp form database which is related to(using) table XXX