Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Oracle client and networking components were not found

Tags:

sql

oracle

ssis

I created SSIS will do task like get data from oracle to sql server.i run ssis package run in my local system.it is working fine but i deployed ssis package in remote system and trying access from sql procedure. I'm getting error like below.

Oracle client and networking components were not found. These components are supplied by Oracle Corporation and are part of the Oracle Version on 7.3.3 or later client software installation.

Please let know if any solution there?

like image 596
Bhaskara varma Dandu Avatar asked Jan 25 '12 12:01

Bhaskara varma Dandu


People also ask

Where is Oracle Instant Client installed?

Install Oracle Instant Client from a Zip FileOn the Instant Client Downloads page, select the Instant Client for your platform. Accept the license agreement and select the Instant Client Package - Basic RPM for your version of Oracle Database. Return to the Oracle Database Instant Client page for your platform.


2 Answers

Simplest solution: The Oracle client is not installed on the remote server where the SSIS package is being executed.

Slightly less simple solution: The Oracle client is installed on the remote server, but in the wrong bit-count for the SSIS installation. For example, if the 64-bit Oracle client is installed but SSIS is being executed with the 32-bit dtexec executable, SSIS will not be able to find the Oracle client. The solution in this case would be to install the 32-bit Oracle client side-by-side with the 64-bit client.

like image 106
Ed Harper Avatar answered Nov 13 '22 07:11

Ed Harper


Technology used: Windows 7, UFT 32 bit, Data Source ODBC pointing out to 32 bit C:\Windows\System32\odbcad32.exe, Oracle client with both versions installed 32 bit and 64 bit.

What worked for me:

1.Start -> search for Edit the system environment variables
2.System Variables -> Edit Path
3.Place the path for Oracle client 32 bit in front of the path for Oracle Client 64 bit.

Ex:

C:\APP\ORACLE\product\11.2.0\client_32\bin;C:\APP\ORACLE\product\11.2.0\client_64\bin
like image 45
user6290708 Avatar answered Nov 13 '22 05:11

user6290708