Hello boys, looking a little more detail in the error i found the following legend.
2014-06-23 01:56:16 ::LoadCharacter 12 (Name Pj) qerr=-1, EXEC usp_Read_Chars_PointLog_R 12
2014-06-23 01:56:16 ErrorMsg=[Microsoft][ODBC SQL Server Driver]Valor de carácter no válido para especificación cast, SQL STATE: 22018, NATIVE ERROR: 0 (0x0)
I go to the list indicated and the code in the same is:
Code:
set ANSI_NULLS ON
set QUOTED_IDENTIFIER OFF
GO
ALTER Proc [dbo].[usp_Read_Chars_PointLog_R]
@CharID int
--@UseType tinyint
AS
SET NOCOUNT ON
SELECT TOP 10 ProductCode, UseDate, UsePoint FROM PointLog WITH (READUNCOMMITTED) WHERE CharID=@CharID
ORDER BY UseDate desc
SET NOCOUNT OFF
According to the error report said that the error has its beginning in that line of code.
If any of you, I could say where is the error.I'll be very grateful
Many thanks