23/10/2009, 12:56
|
| Colaborador | | Fecha de Ingreso: julio-2007 Ubicación: Mexico, D.F.
Mensajes: 6.482
Antigüedad: 17 años, 5 meses Puntos: 180 | |
Server: Msg 8624, Level 16, State 1, Internal SQL Server error Hola compañeros, he buscado por internet y no encuentro razon del error.
Mi aplicativo estaba trabajando correctamente, empezo a enviarme el mensaje de error:
Server: Msg 8624, Level 16, State 1
Internal SQL Server error
Revise el store donde esta tronando y es un simple UPDATE:
/*
UPDATE ardoc
SET ardoc.Applbatnbr = '',
ardoc.ApplAmt = 0,
ardoc.CuryApplamt = 0
FROM wrkrelease w INNER JOIN batch b
ON w.batnbr = b.batnbr
INNER JOIN ardoc
ON ardoc.Applbatnbr = b.batnbr
WHERE b.Module = 'AR'
AND w.Module = 'AR'
AND useraddress = @useraddress
AND b.status = 'I'
AND b.editscrnnbr = '08030'
*/
Tengo SQL SERVER 2000 ENTERPRISE EDITION, SP4
Cualquier guia o comentario, sera bienvenido. |