Hi All,
I have a sp that works fine in server A and does not compile on server B
CREATE FUNCTION [dbo].[fn_MyFunction] (@aParam DEC(10,3))
RETURNS INT
BEGIN
DECLARE @caseSensitive INT
SET @CASESENSITIVE = @aParam
RETURN @caseSensitive
END
Ok this is not the sp but the problem is with case because when I change it to the same case then it compiles fine.
Thanks for your input.
Sylvain