Quantcast
Channel: SQL Server Integration Services forum
Viewing all articles
Browse latest Browse all 24688

SSIS 2008 connect to Remedy AR ODBC

$
0
0

I am connecting to Remedy system with AR ODBC driver. 

Details:

1. Windows Server 2008 R2 Enterprise 64 bit, SQL Server 2008

Microsoft SQL Server 2008 (SP2) - 10.0.4000.0 (X64)   Sep 16 2010 19:43:16   Copyright (c) 1988-2008 Microsoft Corporation  Developer Edition (64-bit) on Windows NT 6.1 <X64> (Build 7600: ) (VM)

2. Create System DSN using the AR ODBC driver 32 bit in the ODBC 32bit data source administrator

3. Create a SSIS project in BIDS, create a package, set debuging 64bit to false. create data source (.Net provider/ODBC Data Provider) with the system dsn,  create ADO.Net connetion manager using that data source.

4. in the package, create a data flow task. In the data flow task, create an ADO.net source component using the ADO.net connection manager just created. Use a query to select:

SELECT    Channel,    Commenced_Date,    Deactivation_Date,    Customer_Code,    Customer_Requests,    Has_Monitoring,    LocalStudioSiteNo,    Local_Studio,
    Main_Feed,    Management_Level,    Modified_Date,    Modulation,    National_Satellite,    National_Studio,    NationalSatSiteNo,    NationalStudioSiteNo,
    Operational_Status,    Output_Frequency,    ParentSiteNo,    Parent_Service,    Parent_Site,    RAC_Roundup_Group,    Request_ID,    Service_Class,    Service_Credit_Report_Type,    Service_Id,    Service_Name,    Service_Type,    SFN_Group,    Site_Class,    Site_Name,    Site_No,    State,    StateSatSiteNo,
    StateStudioSiteNo,    State_Satellite,    State_Studio,    Time_Zone,    Tx_Make,    Tx_Model,    zTmpAssociation1,    zTmpAssociation2,    SNN_Group,
    SNN_Availability__,    Licence_No FROM THSS_NTL_THSS

I got the error below:

Error: 0xC0209029 at Data Flow Task, ADO NET Source [1]: SSIS Error Code DTS_E_INDUCEDTRANSFORMFAILUREONERROR.  The "component "ADO NET Source" (1)" failed because error code 0x80131937 occurred, and the error row disposition on "output column "Modulation" (49)" specifies failure on error. An error occurred on the specified object of the specified component.  There may be error messages posted before this with more information about the failure.

Error: 0xC02090F5 at Data Flow Task, ADO NET Source [1]: The component "ADO NET Source" (1) was unable to process the data. Pipeline component has returned HRESULT error code 0xC0209029 from a method call.

Error: 0xC0047038 at Data Flow Task, SSIS.Pipeline: SSIS Error Code DTS_E_PRIMEOUTPUTFAILED.  The PrimeOutput method on component "ADO NET Source" (1) returned error code 0xC02090F5.  The component returned a failure code when the pipeline engine called PrimeOutput(). The meaning of the failure code is defined by the component, but the error is fatal and the pipeline stopped executing.  There may be error messages posted before this with more information about the failure.

I do the same thing on a windows 7 32 machine with Microsoft SQL Server 2008 (SP3) - 10.0.5512.0 (Intel X86)   Aug 22 2012 15:16:00   Copyright (c) 1988-2008 Microsoft Corporation  Developer Edition on Windows NT 6.1 <X86> (Build 7601: Service Pack 1) it works OK.

The package will be run from SQl Server Agent on a 64 bit machine.

Thank you for any help



Viewing all articles
Browse latest Browse all 24688

Trending Articles