Viewing 4 posts - 1 through 4 (of 4 total)
The problem is solved. The problem was a function called in the view that TRIM strings, and the return variable was set to varchar(2000).
Thanks for the help.
Best Regards,
January 20, 2010 at 10:49 am
It works if I change the declarations to:
@vPrimeiroPSubString bigint,
@vSegundoPSubString bigint,
Best Regards,
January 11, 2010 at 11:14 am
Hi,
Thanks for the reply.
I need to send and e-mail if a field is not null. If on insert or update the field is not null the trigger should fire.
How...
December 28, 2009 at 8:29 am
Lowell (7/16/2009)
after you've done the DECLARE @acumul_error varchar(100) or whatever it is, you need to initialize it as an empty string:
SET @acumul_error =''
in...
July 16, 2009 at 12:35 pm
Viewing 4 posts - 1 through 4 (of 4 total)