通过在 SQL Server Management Studio 2008 中搜索所有存储过程来查找字符串
有没有办法在 SQL Server Management Studio 的所有存储过程中搜索字符串?
Is there a way to search for a string within all stored procs in SQL Server Management Studio?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
看看 RedGate 的 SQL 搜索。它是一个 Management Studio 插件,可以免费下载。您可以在给定数据库内或整个实例中进行搜索。
Have a look at RedGate's SQL Search. It's a Management Studio plugin and a free download. You can search within a given database or across an entire instance.
我总是用这个;
I always use this;
就我而言,每当我搜索特定文本或关键字时,我都希望获取存储过程的架构和名称。我使用且对我有用的代码是:
结果很简单,如下所示:
In my case, I was looking to get the schema and the name of the stored procedure whenever I search for a specific text or keyword. The code I use and it is working for me is:
The result is simple and as follows: