SQL Server Management Studio 中的“在文件中查找”命令
有没有办法使用“在文件中查找”命令来搜索 SQL Server 2005 Management Studio 中特定数据库的所有存储过程和视图?
编辑
我想在数据库 X 中的所有存储过程中搜索字符串 Y。
Is there way to use the "Find in Files" command for searching all of the stored procedures and views for a particular database in SQL Server 2005 Management Studio?
Edit
I want to search all of the stored procedures in database X for string Y.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你不能。
但是,您可以使用查询,例如:
但这不适用于 CLR 或加密存储过程。
You can't.
You can however use a query, for exemple:
This will however not work for CLR or encrypted stored procedures.