Click here to Skip to main content
15,881,600 members
Articles / Database Development / SQL Server
Tip/Trick

Attunity Connectors to Transfer Data from Oracle to SQL Server using SSIS

Rate me:
Please Sign up or sign in to vote.
5.00/5 (1 vote)
7 Dec 2015CPOL1 min read 11.1K  
This tip is useful when we have to move data from Oracle database to SQL Server database or vice-versa using SSIS.

Introduction

As we do not have any option to transfer data from an Oracle data source to SQL Server destination in SSIS. This tip will help in creating the attunity connectors to transfer data from Oracle database to SQL Server database.

Background

In one of my projects, I had to migrate data from Oracle data source to SQL Server data source but I didn't find any option in SSIS to have data source as Oracle. After some research, I am able to configure attunity connector to migrate data from Oracle data source to SQL Server data source. So I would like to share this concept and hope it will be helpful.

Using the Code

Firstly, let's discuss about the prerequisites for configuring attunity connectors.

  1. Attunity connector does not work on all version of BIDS, make sure that you have BIDS 2008 and above.
  2. An Oracle client is installed and TNS service name is defined.
  3. The attunity connector does not support all datatypes, below are the datatypes which are supported by it:
    Oracle Database Data Types SSIS Data Types
    VARCHAR2 DT_STR
    NVARCHAR2 DT_WSTR
    NUMBER DT_R8
    NUMBER (P,S) DTNUMERIC(P,S)
    DATE DT_DBTIMESTAMP
    RAW DT_BYTES
    CHAR DT_STR
    TIMESTAMP DT_STR
  4. The attunity connector can be downloaded here.
  5. Follow the instructions and install the attunity connector. To finish the installation, SSIS must be restarted.

After the installation of connector, the Oracle data source and Oracle data destination should be available in toolbox of BIDS. In case Oracle data source or destination is not present in toolbox, then click on Tools->Choose Toolbox Items and select Oracle data source and destination and add it into Toolbox.

Capture.PNG (569×412)

Now you can configure the Oracle data source / destination, enter the TNS service name and Oracle account same as you configure for OLEDb source/destination.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Database Developer
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.
This is a Social Group (No members)


Comments and Discussions

 
-- There are no messages in this forum --