我在Sql Server Management Studio中写了一个函数,后来又写了存储过程。这些存储过程中,有一些引用了前面写的Sql函数,请问我现在怎样才能找出是哪些存储过程引用了那个Sql函数。
PS:如果在Sql Server Management Studio中有快捷键可以查到最好了,不过能使用Sql语句查询得到也不错。谢谢。
If you use SQL Server2008, right click on your SQL function and select the "View dependencies" option which will list the all objects which the current function used.
exactly as you said, thank you.
你自己写的函数和存储过程, 就不能通过其它手段去记录吗?
另外, 你可以使用工具里面的sql server profiler监测任何sql语句。
这就是我不喜欢在数据库里保存任何代码的原因