How to check all stored procedure is ok in sql server if I drop a table or fields?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
It won't catch everything (dynamic SQL or latebound objects), but it can be useful - call sp_refreshsqlmodule on all non-schema bound stored procedures (you can call it before to ensure that dependencies are updated and then query the dependencies, or call it afterwards and see if anything is broken):
|
|||||||
|
|
I found Cade's answer useful in formulating my own script for checking objects in a database, so I thought I'd share my script as well:
|
|||||
|
|
Couple of ways that come to mind
|
|||
|
|