Hi, 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.
views:
54answers:
2
+2
A:
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
backslash17
2009-08-27 21:47:42
A:
You should be able to add a shortcut that uses sp_helptext
, rather then sp_help
gbn
2009-12-02 19:58:19