是否可以找到依赖于同义词的对象?
我尝试了 exec sp_depends @objname = 'sfel.elpc' 但没有得到任何结果,但我知道至少在一个存储过程中引用了同义词。
I tried exec sp_depends @objname = 'sfel.elpc'
but I did not get any results, but I know the synonym is referenced in at least one stored procedure.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试:
try:
您可以尝试 Red Gate 的SQL Search,它是免费的。我绝对不确定它是否支持同义词,但如果没有建议其他解决方案,可能值得一试。
You could try SQL Search by Red Gate, which is free. I'm by no means sure whether it supports synonyms, but might be worth a try if no other solutions are suggested.
这段代码更好:
这段代码为您提供了更有限的对象列表。
this code is better:
this code give you a more limited list of objects.