HRESULT: 0x80040E14

[Execute SQL Task] Error: Executing the query "exececute dbo.sp 'xxxx;" failed with the following error: "Exception from HRESULT: 0x80040E14". Possible failure reasons: Problems with the query, "ResultSet" property not set correctly, parameters not set correctly, or connection not established correctly. 

Este error se produce cuando en las sentencias sql hay un desbordamiento aritmético, para evitar el error es necesario colocar antes de la ejecución del procedimiento almacenado la siguiente instrucción:

SET ARITHABORT ON;
execute dbo.sp 'xxxx';

No hay comentarios:

Publicar un comentario

Gracias por tus comentarios!