0

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.

ROOT
  • 11,363
  • 5
  • 30
  • 45
dotnet-practitioner
  • 13,968
  • 36
  • 127
  • 200

2 Answers2

2

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
  • 5,300
  • 4
  • 31
  • 46
1

You should be able to add a shortcut that uses sp_helptext, rather then sp_help

gbn
  • 422,506
  • 82
  • 585
  • 676