December 17, 2013 at 12:08 pm
Hi,
How to verify that all 300 existing SPs will be OK after we introduced some new tables/columns. I heard about Export/Import feature but I think it's only for data?
Another option to create script exec sp_recompile (sp_name1....name300) ??
Appreciate your help, I think this also can affect all dbo in Programmability folder.
Thansk
Mario
December 17, 2013 at 12:32 pm
take a look at this post i participated in a while back; it's got some handy code for finding all invalid objects, which would happen on procs/functions/views if the underlying objects they depend on were missing;
that won't fix any procs that use dynamic sql to find tables or columns, but it will find anything with direct dependencies.
FInding Invalid Stored Procedure in SQL 2008
Lowell
December 17, 2013 at 12:47 pm
Thanks Lowell
!!
Viewing 3 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply