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 are OFFLINE Datafiles with SQL Server ?

What are the INTERSECT Operators in SQL Server ?

What are the Different Recovery Models Inside SQL Server ?

What is the Difference Between a Local and a Global Temporary Tab ...

What is the Difference Between Update Lock and Exclusive Lock in ...