Viewing 2 posts - 1 through 2 (of 2 total)
The script is not work when the Stored Procedure are in a specific schema.
USE [DatabaseName] EXEC sp_recompile [Schema.Storedprocedure]
INSERT INTO @TblTable
(
DBName
, RecompileStmt
)
VALUES
@name
, N'Select N'...
October 14, 2016 at 2:04 am
#1906506
Hello,
I have executed your script on my sql server. I had a lot of error because it is case sensitive .
I corrected the mistakes and fontionne well, I think I...
September 22, 2015 at 1:05 am
#1828282