sql server 2000:获取存储过程文本的快捷方式
在查询分析器中获取存储过程的完整文本的快捷方式是什么。我知道我可以突出显示表名称并点击 alt + F1 并获取整个表结构。
what is the short cut to get entire text of the stored proc in query analyzer. I know that I could highlight table name and hit alt + F1 and get the entire table structure.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的具体要求似乎不存在捷径。如果您想查看查询分析器快捷方式的完整列表,请访问以下链接:
http://msdn.microsoft.com/en-us /library/aa216992(SQL.80).aspx
无论如何,您可以修改、自定义或创建自己的快捷方式。
例如 ALT+F1 仅执行“sp_help”存储过程。
请查看文档:
http://msdn.microsoft。 com/en-us/library/aa216956(SQL.80).aspx
It seems to not exist a shorcut with your exact request. If you want to see the complete list of query analyzer shorcuts visit the folowing link:
http://msdn.microsoft.com/en-us/library/aa216992(SQL.80).aspx
Anyway you can modify, customize or create your own shorcuts.
For examle ALT+F1 just executes the "sp_help" stored procedure.
Check the documentation at:
http://msdn.microsoft.com/en-us/library/aa216956(SQL.80).aspx
您应该能够添加快捷方式使用
sp_helptext
,而不是sp_help
You should be able to add a shortcut that uses
sp_helptext
, rather thensp_help