Ver Mensaje Individual
  #1 (permalink)  
Antiguo 13/03/2014, 15:50
sirguille
 
Fecha de Ingreso: septiembre-2005
Mensajes: 74
Antigüedad: 19 años, 1 mes
Puntos: 0
Problema con Ejecución de paquete SSIS

Estoy tratando de hacer un paquete simple que obtiene data de AS400 y quiero que impacte en una base SQL server.

El paquete se sube al integration services 2008 por managemnet studio MSDB, y se ejecuta mediante un schedulador externo llamado control M, el error que me lanzza es el siguiente:

Código BASH:
Ver original
  1. --------------------------------------
  2.  
  3. Executing package:
  4. \STS\CSF_STS_ActualizarVendedores_AS400_SQL
  5.  
  6.     Package (Package) validation started.
  7.     Package (Package) validation completed.
  8.     Package (Package) started on 3/11/2014 9:28:30 AM
  9.         Task (ObtenerCadena de Conexión) started on 3/11/2014 9:28:30 AM
  10.         Task (ObtenerCadena de Conexión) validation started.
  11.         Task (ObtenerCadena de Conexión) validation completed.
  12.         Task (ObtenerCadena de Conexión) finished on 3/11/2014 9:28:38 AM. Result: Success
  13.         Task (Borrar tablas temporales) started on 3/11/2014 9:28:38 AM
  14.         Task (Borrar tablas temporales) validation started.
  15.         Task (Borrar tablas temporales) validation completed.
  16.             Executing query "TRUNCATE TABLE LPTD61TMP;
  17. ".
  18.             Progress: 50 percent complete.
  19.             Executing query "
  20. TRUNCATE TABLE  LPTD62TMP;
  21. ".
  22.             Progress: 100 percent complete.
  23.         Task (Borrar tablas temporales) finished on 3/11/2014 9:28:39 AM. Result: Success
  24.         Task (Carga temporales) started on 3/11/2014 9:28:39 AM
  25.         Task (Carga temporales) validation started.
  26.             Information: Validation phase is beginning. Microsoft.SqlServer.Dts.Runtime.TaskHost
  27.             Validating
  28.             Progress: 0 percent complete.
  29.         ERROR: SSIS Error Code DTS_E_OLEDBERROR.  An OLE DB error has occurred. Error code: 0x80040E44.
  30. An OLE DB record is available.  Source: "IBMDA400 Session"  Hresult: 0x80004005  Description: "CWBZZ5024 The initial catalog proper\
  31. ty is set to an invalid catalog.".
  32.  
  33.             ERROR: SSIS Error Code DTS_E_CANNOTACQUIRECONNECTIONFROMCONNECTIONMANAGER.  The AcquireConnection method call to the connection \
  34. manager "AS400" failed with error code 0xC0202009.  There may be error messages posted before this with more information on why the\
  35.  AcquireConnection method call failed.
  36.  
  37.             ERROR: component "AS400_LPTD61" (1) failed validation and returned error code 0xC020801C.
  38.  
  39.             Validating
  40.             Progress: 25 percent complete.
  41.             ERROR: One or more component failed validation.
  42.  
  43.             ERROR: There were errors during task validation.
  44.  
  45.         Task (Carga temporales) validation completed.
  46.         Task (Carga temporales) finished on 3/11/2014 9:28:41 AM. Result: Failure
  47.         Warning: SSIS Warning Code DTS_W_MAXIMUMERRORCOUNTREACHED.  The Execution method succeeded, but the number of errors raised (5) r\
  48. eached the maximum allowed (1); resulting in failure. This occurs when the number of errors reaches the number specified in Maximum\
  49. ErrorCount. Change the MaximumErrorCount or fix the errors.
  50.  
  51.     Package (Package) finished on 3/11/2014 9:28:41 AM. Result: Failure
  52.  
  53. Package execution completed with 5 error(s) and 1 warning(s).
  54.  
  55. Package exit message: Failure

Última edición por gnzsoloyo; 14/03/2014 a las 08:15