Configuring Integrator ETL to use Oracle Language Technology

After installing Oracle Language Technology, you must configure Integrator ETL to use it.

Configuring OLT in Integrator ETL Designer

To configure OLT for Integrator ETL Designer:
  • Add the environment variable OLT_HOME. The value of this environment variable is the root directory of the OLT installation.
    • In Windows, add the Environment Variable to the System Properties.
    • In Linux, add the OLT_HOME variable to your .bash_profile.
  • Add the OLT/bin directory to the path.
    • In Windows, go to System Properties and edit the Path environment variable. Add %OLT_HOME%\bin to the end of the Path Remember to use semicolons to separate the new item in the Path.
    • In Linux, add $OLT_HOME/bin to the LD_LIBRARY_PATH environment variable in your .bash_profile.

Configuring OLT for Integrator ETL Server on WebLogic on Windows

Add the following code to the file $MW_HOME\user_projects\domains\<integrator-server-domain>\bin\setDomainEnv.cmd:
set OLT_HOME=<%OLT_HOME%>
set path=%path%;%OLT_HOME%\bin
For example, if you install OLT to the root of your C:\ drive, you would add
set OLT_HOME=C:\OLT
set path=%path%;%OLT_HOME%\bin
to setDomainEnv.cmd.

Configuring OLT for Integrator ETL Service on Weblogic on Linux

Add the following code to the file $MW_HOME/user_projects/domains/<integrator-server-domain>/bin/setDomainEnv.sh
export OLT_HOME=<%OLT_HOME%>
export LD_LIBRARY_PATH=$OLT_HOME/bin:$LD_LIBRARY_PATH

Configuring OLT for Integrator ETL Server on Tomcat on Windows

Add the following code to the file $TOMCAT_ROOT\bin\setenv.cmd:
set OLT_HOME=<%OLT_HOME%>
set path=%path%;%OLT_HOME%\bin
For example, if you install OLT to the root of your C:\ drive, you would add
set OLT_HOME=C:\OLT
set path=%path%;%OLT_HOME%\bin
to setenv.cmd.

Configuring OLT for Integrator ETL Server on Tomcat on Linux

Add the following code to the file $TOMCAT_ROOT\bin\setenv.sh:
export OLT_HOME=<%OLT_HOME%>
export LD_LIBRARY_PATH=$OLT_HOME/bin:$LD_LIBRARY_PATH