How to update custom features

Possible duplicate:
Upgrading SQL Server UDF

The system stored procedure sp_refreshviewcan be used to validate and recompile views in SQL Server.

How can I do the same for scalar functions and table functions?

+3
source share
1 answer

You should look at sp_refreshsqlmodule .

+6
source

All Articles