datastage配置oracle,Datastage 8.5 连接远程Oracle 数据库

工作中需要使用Datastage  把Oracle的数据导到DB2 中,发现IBM 的文档不是很全,

在问了很多人,包括同事老杜、Bryan Zhang, Robert等,终于可以连接Oralce 了,就做了一个纪录,算是备忘吧。

Install environment:

Datastage 8.5

Linux 2.6.18

Remote Oracle Database version is 11g

1)     Install Oracle client

Install Oracle client 11g in the DS server with user oracle, my install option is ‘Administrator ‘.

Copy tnsnames.ora file from the Oracle server to $ORACLE_HOME/network/admin. Please pay attention to the HOST, we can use IP or HOSTNAME.

[Oracle@datastage admin]$ cat tnsnames.ora

# tnsnames.ora Network Configuration File: C:\app\ligj\product\11.2.0\client_1\network\admin\tnsnames.ora

# Generated by Oracle configuration tools.

ORAJERRY =

(DESCRIPTION =

(ADDRESS_LIST =

(ADDRESS = (PROTOCOL = TCP)(HOST = IBM-RS05L7GG9A3)(PORT = 1521))

)

(CONNECT_DATA =

(SERVICE_NAME = ORAJERRY)

)

)

Add Oracle_HOME in .bash_profile under oracle user.

Login Oracle server with:

Sqlplus usera/pwd@ORAJERRY

2)     Configuration on DS server

Add those parameters in the dsenv under DSHOME, following is my:

DSHOME=/opt/IBM/InformationServer/Server/DSEngine

export Oracle_HOME=/home/oracle/app/oracle/product/11.2.0/client_1

export TNS_ADMIN=/home/Oracle/app/oracle/product/11.2.0/client_1/network/admin

export LD_LIBRARY_PATH=$APT_ORCHHOME/lib:$LD_LIBRARY_PATH:$Oracle_HOME/lib:$ORAC                                                                                                LE_HOME/rdbms/lib

export PATH=$PATH:$Oracle_HOME/bin:$APT_ORCHHOME/bin

export Oracle_BASE=/home/oracle/app

export LIBPATH=$Oracle_HOME/rdbms/lib:$ORACLE_HOME/lib:$LIBPATH

[root@datastage DSEngine]# find /opt -name install.liborchOracle

/opt/IBM/InformationServer/Server/StagingArea/Installed/PxOracle/install/install.liborchoracle

/opt/IBM/InformationServer/Server/DSComponents/install/install.liborchOracle

[root@datastage DSEngine]# find /opt -name libccora*

/opt/IBM/InformationServer/Server/StagingArea/Installed/OracleConnector/Server/linux/libccora11g.so

/opt/IBM/InformationServer/Server/StagingArea/Installed/OracleConnector/Server/linux/libccora10g.so

/opt/IBM/InformationServer/Server/DSComponents/bin/libccora11g.so

/opt/IBM/InformationServer/Server/DSComponents/bin/libccora10g.so

My error message are ‘Can’t find libccora10g.so’

[root@datastage DSEngine]# cd $Oracle_HOME/lib

[root@datastage DSEngine]#ln –s /opt/IBM/InformationServer/Server/StagingArea/Installed/OracleConnector/Server/linux/libccora11g.so licccora11g.so

[root@datastage DSEngine]#ln –s /opt/IBM/InformationServer/Server/StagingArea/Installed/OracleConnector/Server/linux/libccora10g.so licccora10g.so

Then execute the ‘/opt/IBM/InformationServer/Server/StagingArea/Installed/PxOracle/install/install.liborchoracle’ with root user.

[root@datastage DSEngine]# export DSHOME=/opt/IBM/InformationServer/Server/DSEngine

[root@datastage DSEngine]# export APT_ORCHHOME=/opt/IBM/InformationServer/Server/PXEngine

[root@datastage DSEngine]# vi /opt/IBM/InformationServer/Server/DSComponents/install/install.liborchOracle

Alter this:

install_driver() {

case $version in

9 ) VER='9i';;

10 ) VER='10g';;

0 ) return;;

esac

To

install_driver() {

case $version in

9 ) VER='9i';;

10|11 ) VER='10g';;

0 ) return;;

esac

Then can support Oracle 11g client

Execute it

[root@datastage DSEngine]# /opt/IBM/InformationServer/Server/DSComponents/install/install.liborchOracle

Installing Oracle driver.

Installing driver for Oracle Version 10g

Oracle driver installation is completed.

Test the dynamic library

[root@datastage DSEngine]# cd $Oracle_HOME/lib

[root@datastage lib]# ls -al libcc*

lrwxrwxrwx 1 Oracle dba 65 Apr 24 17:26 libccora10g.so -> /opt/IBM/InformationServer/Server/DSComponents/bin/libccora10g.so

lrwxrwxrwx 1 Oracle dba 65 Apr 24 17:25 libccora11g.so -> /opt/IBM/InformationServer/Server/DSComponents/bin/libccora11g.so

[root@datastage lib]# ldd libccora10g.so

linux-vdso.so.1 => (0x00007fff5d960000)

/opt/IBM/InformationServer/Server/DSComponents/lib/libicui18n.so (0x00002af26ea97000)

libicuio.so.32 => /opt/IBM/InformationServer/Server/PXEngine/lib/libicuio.so.32 (0x00002af26ecb5000)

libicuuc.so.32 => /opt/IBM/InformationServer/Server/PXEngine/lib/libicuuc.so.32 (0x00002af26edc1000)

libfcl.so => /opt/IBM/InformationServer/Server/PXEngine/lib/libfcl.so (0x00002af26efaf000)

libclntsh.so.10.1 => /home/Oracle/app/oracle/product/11.2.0/client_1/lib/libclntsh.so.10.1 (0x00002af26f2b3000)

libstdc++.so.6 => /opt/IBM/InformationServer/ASBNode/apps/proxy/cpp/linux-all-x86_64/libstdc++.so.6 (0x00002af2718dd000)

libm.so.6 => /lib64/libm.so.6 (0x00002af271af9000)

libc.so.6 => /lib64/libc.so.6 (0x00002af271d7c000)

libgcc_s.so.1 => /lib64/libgcc_s.so.1 (0x00002af2720d3000)

libicudata.so.32 => /opt/IBM/InformationServer/Server/PXEngine/lib/libicudata.so.32 (0x00002af2722e2000)

libpthread.so.0 => /lib64/libpthread.so.0 (0x00002af273071000)

libnsl.so.1 => /lib64/libnsl.so.1 (0x00002af27328d000)

libdl.so.2 => /lib64/libdl.so.2 (0x00002af2734a5000)

libicutu.so.32 => /opt/IBM/InformationServer/Server/PXEngine/lib/libicutu.so.32 (0x00002af2736a9000)

libxml4c.so.56 => /opt/IBM/InformationServer/Server/DSComponents/lib/libxml4c.so.56 (0x00002af2737b8000)

liborchx86_64.so => /opt/IBM/InformationServer/Server/PXEngine/lib/liborchx86_64.so (0x00002af273c56000)

liborchcorex86_64.so => /opt/IBM/InformationServer/Server/PXEngine/lib/liborchcorex86_64.so (0x00002af2747d5000)

libnnz11.so => /home/Oracle/app/oracle/product/11.2.0/client_1/lib/libnnz11.so (0x00002af274a23000)

libaio.so.1 => /usr/lib64/libaio.so.1 (0x00002af274deb000)

/lib64/ld-linux-x86-64.so.2 (0x00000032b4a00000)

liborchmonitorx86_64.so => /opt/IBM/InformationServer/Server/PXEngine/lib/liborchmonitorx86_64.so (0x00002af274fed000)

[root@datastage lib]# ldd libccora11g.so

linux-vdso.so.1 => (0x00007fffe5ffd000)

/opt/IBM/InformationServer/Server/DSComponents/lib/libicui18n.so (0x00002b838afc7000)

libicuio.so.32 => /opt/IBM/InformationServer/Server/PXEngine/lib/libicuio.so.32 (0x00002b838b1e5000)

libicuuc.so.32 => /opt/IBM/InformationServer/Server/PXEngine/lib/libicuuc.so.32 (0x00002b838b2f1000)

libfcl.so => /opt/IBM/InformationServer/Server/PXEngine/lib/libfcl.so (0x00002b838b4df000)

libclntsh.so.11.1 => /home/Oracle/app/oracle/product/11.2.0/client_1/lib/libclntsh.so.11.1 (0x00002b838b7e3000)

libstdc++.so.6 => /opt/IBM/InformationServer/ASBNode/apps/proxy/cpp/linux-all-x86_64/libstdc++.so.6 (0x00002b838de0d000)

libm.so.6 => /lib64/libm.so.6 (0x00002b838e029000)

libc.so.6 => /lib64/libc.so.6 (0x00002b838e2ac000)

libgcc_s.so.1 => /lib64/libgcc_s.so.1 (0x00002b838e603000)

libicudata.so.32 => /opt/IBM/InformationServer/Server/PXEngine/lib/libicudata.so.32 (0x00002b838e812000)

libpthread.so.0 => /lib64/libpthread.so.0 (0x00002b838f5a1000)

libnsl.so.1 => /lib64/libnsl.so.1 (0x00002b838f7bd000)

libdl.so.2 => /lib64/libdl.so.2 (0x00002b838f9d5000)

libicutu.so.32 => /opt/IBM/InformationServer/Server/PXEngine/lib/libicutu.so.32 (0x00002b838fbd9000)

libxml4c.so.56 => /opt/IBM/InformationServer/Server/DSComponents/lib/libxml4c.so.56 (0x00002b838fce8000)

liborchx86_64.so => /opt/IBM/InformationServer/Server/PXEngine/lib/liborchx86_64.so (0x00002b8390186000)

liborchcorex86_64.so => /opt/IBM/InformationServer/Server/PXEngine/lib/liborchcorex86_64.so (0x00002b8390d05000)

libnnz11.so => /home/Oracle/app/oracle/product/11.2.0/client_1/lib/libnnz11.so (0x00002b8390f53000)

libaio.so.1 => /usr/lib64/libaio.so.1 (0x00002b839131b000)

/lib64/ld-linux-x86-64.so.2 (0x00000032b4a00000)

liborchmonitorx86_64.so => /opt/IBM/InformationServer/Server/PXEngine/lib/liborchmonitorx86_64.so (0x00002b839151d000)

[root@datastage lib]#

Open ‘DS Administrator Client’

Click ‘Environment’ , go to

3)     Restart DS server and IS agent:

1) stop DS engine

[root@datastage DSEngine]# cd /opt/IBM/InformationServer/Server/DSEngine/bin

[root@datastage DSEngine]#./uv –admin –stop

2) stop IS agent

[root@datastage DSEngine]# cd /opt/IBM/InformationServer/ASBNode/bin

[root@datastage DSEngine]#./NodeAgents.sh stop

3) start IS agent

[root@datastage DSEngine]# cd /opt/IBM/InformationServer/ASBNode/bin

[root@datastage DSEngine]#./NodeAgents.sh start

4) start DS engine

[root@datastage DSEngine]# cd /opt/IBM/InformationServer/Server/DSEngine/bin

[root@datastage DSEngine]#./uv –admin –start

Then I can connect to Oracle in Designer

本文出自:亿恩科技【www.enkj.com】

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值