What does it mean to “recompile” a stored procedure on a SQL Server?
Should this be a manual process or an automated one?
What are the pros and cons of this process?
Thank you!
What does it mean to recompile a stored procedure on a SQL Server? Should
Share
It’s strictly an internal operation within SQL Server.
Here’s MSDN’s article on Recompiling Stored Procedures
When you issue an
ALTER PROCstatement, you’re also causing a recompile of the stored proc.