HomeSQL ServerSQL Server – Shortcut to display the Stored procedure Code

SQL Server – Shortcut to display the Stored procedure Code

Are you looking at displaying the stored procedure code quickly with-in your SQL Server Management Studio ?. Here’s how you do it.

How to display Stored Procedure Code in SQL Server Management Studio ?

Open SQL Management Studio and connect to the server.

1.Type the following script in the Query Editor and hit the Execute button (F5). Note that the name of the stored procedure in this example is “sptest”.

sp_helptext ‘sptest’

2. You should see the SP code in the Results to Text window.

How to display Stored Procedure Code in SQL Server Management Studio ?
How to display Stored Procedure Code in SQL Server Management Studio ?

Leave a Reply

You May Also Like

When dealing with a relational database management system (RDBMS) like SQL Server, compatibility level is an important concept to understand....
In this blog post, let’s learn about the error message “49975 – Unable to load controller client certificate due to...
In this blog post, let’s learn about the error message “49973 – Cannot remove tempdb remote file to local tempdb...