Not sure I understand the question
I have run some tests and SQL Script package object is working as expected
Here is an example
update [DEMO].[dbo].[afleveradres] set id=id
GO
update [DEMO].[dbo].[afleveradres] set id='ABCCC'
GO
update [DEMO].[dbo].[afleveradres] set id=id
GO
Line 2 fails
But line 3 still executed
Information 13/08/2023 09:52:04 Executing Sql Script...
Information 13/08/2023 09:52:04 Executing Sql...
Information 13/08/2023 09:52:04 update [DEMO].[dbo].[afleveradres] set id=id
Information 13/08/2023 09:52:04 Done!
Information 13/08/2023 09:52:04 Executing Sql...
Information 13/08/2023 09:52:04 update [DEMO].[dbo].[afleveradres] set id='ABCCC'
Error 13/08/2023 09:52:04 22018 [Microsoft][ODBC Driver 17 for SQL Server][SQL Server]Conversion failed when converting the varchar value 'ABCCC' to data type int.
Information 13/08/2023 09:52:04 Executing Sql...
Information 13/08/2023 09:52:04 update [DEMO].[dbo].[afleveradres] set id=id
Information 13/08/2023 09:52:04 Done!
If you are using dynamic SQL inside a stored procedure you might find this link very useful.
www.sqlservercentral.com/forums/topic/ig...g-error-and-continue