MS SQL Compiling a Stored Procedure With a Requery

The following query model is run to recompile the stored procedure in MS SQL with the query.

EXEC sp_recompile '{Our SP Name}'

Here is an example of usage..

EXEC sp_recompile 'SP_UPDATE_CONTACTS'


You May Interest

What is the Maximum Size per Database for SQL Server Express ?

What are The Different Backup Options With SQL Server ?

What is TABLESAMPLE in SQL Server ?

How to Rebuild the Master Database in SQL Server ?

How is Sqlcmd Different from Osql ?