Difference between revisions of "HowTo:Update Data via OLEDB with a Workflow"
Line 5: | Line 5: | ||
# Use [[CreateOLEOracleScope (Activity)|CreateOLEOracleScope]] activity to set up the connection. | # Use [[CreateOLEOracleScope (Activity)|CreateOLEOracleScope]] activity to set up the connection. | ||
# Place either a [[CreateOLETableScope (Activity)]] or a [[CreateOLEQueryScope (Activity)]] within the scope acticity to define the table you want to udate data. | # Place either a [[CreateOLETableScope (Activity)]] or a [[CreateOLEQueryScope (Activity)]] within the scope acticity to define the table you want to udate data. | ||
− | #:<p | + | #:<p>{{Attention|If you are using a CreateOLEQueryScope to fetch data you want to update, you '''have to''' define a valid tablename!}}</p> |
# Iterate throw the fetched rows by using e.g. a '''for each''' activity. | # Iterate throw the fetched rows by using e.g. a '''for each''' activity. | ||
# Once you determine the row to be updated, use [[OLEEditRow (Activity)]] to start editing. | # Once you determine the row to be updated, use [[OLEEditRow (Activity)]] to start editing. |
Revision as of 09:57, 11 February 2015
Updating data in an Oracle database via a workflow can be done by using a set of activities.