Jump to: navigation, search

Difference between revisions of "HowTo:Connect To Oracle With A Workflow"


Line 2: Line 2:
  
 
= Instructions =
 
= Instructions =
# Configure the Oracle server in the TNS Names of your Oracle client:
+
<ol>
## Locate the file ''tnsnames.ora'' in the directory '''[ORACLESOFTWARE]\network\admin\'''
+
<li>Configure the Oracle server in the TNS Names of your Oracle client:
## Configure the connection and call it (like in this example TESTDB):<br/>
+
* Locate the file ''tnsnames.ora'' in the directory '''[ORACLESOFTWARE]\network\admin\'''
 +
* Configure the connection and call it (like in this example TESTDB):<br/>
 
<source lang="text">
 
<source lang="text">
 
TESTDB=
 
TESTDB=
Line 16: Line 17:
 
)
 
)
 
</source>
 
</source>
# Use the [[CreateOLEOracleScope (Activity)]] activity to configure the connection via the arguments:
+
</li>
 +
<li>Use the [[Activity:CreateOLEOracleScope (Activity)]] activity to configure the connection via the arguments:</li>
 
#* the Oracle database '''DataSource'''
 
#* the Oracle database '''DataSource'''
 
#* the '''InitialCatalog'''
 
#* the '''InitialCatalog'''
 
#* '''UserName''' and '''Password'''
 
#* '''UserName''' and '''Password'''
# Use the [[CreateOLETableScope (Activity)]] activity or a [[CreateOLEQueryScope (Activity)]] to define the table you want to fetch data from. Set the tablename in the '''DisplayName''' argument.
+
<li>Use the [[Activity:CreateOLETableScope (Activity)]] activity or a [[Activity:CreateOLEQueryScope (Activity)]] to define the table you want to fetch data from. Set the tablename in the '''DisplayName''' argument.</li>
# Use a '''ForEach<DataRow>''' activity to iterate over the records fetched from the table.
+
<li>Use a '''ForEach<DataRow>''' activity to iterate over the records fetched from the table.</li>
# A column of the recordset (table) can be accessed by its index.
+
<li>A column of the recordset (table) can be accessed by its index.</li>
 +
</ol>
  
 
=Example=
 
=Example=

Revision as of 11:54, 23 February 2015

UBIK® uses OLEDB to connect to Oracle via TNS (Transparent Network Substrate), therefore it is necessary to configure the connection to the server on your local environment prior to connecting to an Oracle database.

[edit]

Instructions

  1. Configure the Oracle server in the TNS Names of your Oracle client:
    • Locate the file tnsnames.ora in the directory [ORACLESOFTWARE]\network\admin\
    • Configure the connection and call it (like in this example TESTDB):
    TESTDB=
     (DESCRIPTION =
       (ADDRESS_LIST =
         (ADDRESS = (PROTOCOL = TCP)(Host =AUGTESTORACLE.cloudapp.net)(Port = 1521))
       )
     (CONNECT_DATA =
       (SERVICE_NAME = UBIKTEST)
     )
    )
  2. Use the CreateOLEOracleScope (Activity) activity to configure the connection via the arguments:
      • the Oracle database DataSource
      • the InitialCatalog
      • UserName and Password
  3. Use the CreateOLETableScope (Activity) activity or a CreateOLEQueryScope (Activity) to define the table you want to fetch data from. Set the tablename in the DisplayName argument.
  4. Use a ForEach<DataRow> activity to iterate over the records fetched from the table.
  5. A column of the recordset (table) can be accessed by its index.

Example

Connecting to an Oracle database and fetching data with the CreateOLETableScope activity
Example Workflow
Oratest.uwf


Connecting to oracle DB and reading data with a CreateOLEQueryScope: Example workflow sql statement.uwf