Hi team,
I created an ssis package with data sources (oracle 64 bits) and destination (sql server 64 bits) ok. in fact through an sql query I want to export data from an oracle table to an sql server table.
at this level everything is fine.
Using visual studio vs2022 64bits 17.6.4 in debug mode:
- sometimes it works (i can see the data in sql server table.)
- and sometimes running a second time the ssis package fails after deleting all data in sql server table (I do it to check if everything is working fine):
SSIS package "C:\REs\package.dtsx" starting.
Information: 0x4004300A at Tâche de flux de données 2, SSIS.Pipeline: Validation phase is beginning. Information: 0x4004300A at Tâche de flux de données 2, SSIS.Pipeline: Validation phase is beginning. Information: 0x40043006 at Tâche de flux de données 2, SSIS.Pipeline: Prepare for Execute phase is beginning. Information: 0x40043007 at Tâche de flux de données 2, SSIS.Pipeline: Pre-Execute phase is beginning. Information: 0x4004300C at Tâche de flux de données 2, SSIS.Pipeline: Execute phase is beginning.
SSIS package "C:\REs\package.dtsx" finished: Canceled.
I don't understand this behavior. I don't understand why sometimes the execution works and sometimes not.
Subsequently, I made a faultless deployment of the ssis package to sql server for scheduled automatic execution. But when execution is started, I receive the following message:
Executed as user: NT Service\SQLSERVERAGENT. Microsoft (R) SQL Server Execute Package Utility Version 15.0.2000.5 for 64-bit Copyright (C) 2019 Microsoft. All rights reserved. Started: 16:56:00 Package execution on IS Server failed. Execution ID: 20, Execution Status:6. To view the details for the execution, right-click on the Integration Services Catalog, and open the [All Executions] report Started: 16:56:00 Finished: 16:56:05 Elapsed: 4,734 seconds. The package execution failed. The step failed.
In the Integration Services Catalog reports, I don't see any alarming error messages apart from unexpected termination.
what to do?
Thank you for your support