Para inserciones en tablas con columnas calculadas, necesita estas opciones de configuración:
La opción NUMERIC_ROUNDABORT debe estar desactivada y las siguientes opciones deben estar activadas:
ANSI_NULLS
ANSI_PADDING
ANSI_WARNINGS
ARITHABORT
CONCAT_NULL_YIELDS_NULL
QUOTED_IDENTIFIER
Intente agregar esto antes de su inserción:
set NUMERIC_ROUNDABORT off
set ANSI_NULLS, ANSI_PADDING, ANSI_WARNINGS, ARITHABORT, CONCAT_NULL_YIELDS_NULL, QUOTED_IDENTIFIER on
insert ...