Table of Contents

Search

  1. Preface
  2. Introduction
  3. Dashboard
  4. Resources
  5. Workflows
  6. Task Reference
  7. Services Overview
  8. Users
  9. Logs and Reports
  10. Encryption
  11. System
  12. Appendix
  13. Glossary Terms

Example 2: SQL INSERT

Example 2: SQL INSERT

A 'myData' RowSet variable contains the following data that will be inserted into a SQL database:
${myData} RowSet Variable
${myData[1]}
${myData[2]}
${myData[3]}
${myData[4]}
${myData[5]}
${myData[6]}
Employee ID
First Name
Last Name
Hire Date
Dept. Code
Salary
34594
Heather
Banks
1998-01-19
BB001
72000
34593
Tina
Young
2010-04-01
BB001
65000
34590
Kathy
Harris
2007-09-30
KH001
105000
34592
Mark
Walker
2012-11-15
KH001
87500
34591
John
Davis
2001-06-15
KH001
85000
Follow the steps below to perform an SQL INSERT statement using data from a RowSet:
  1. From within the Project Designer page, expand the Database folder in the Component Library, and then drag the SQL task to the Project Outline. .
  2. On the Basic tab of the SQL task, select the database server resource from the drop-down list. If not already defined, click the
    Create
    button to define a new database server resource.
  3. Click the
    Add
    button to Add a Query to the SQL task.
  4. Type in your SQL Insert Statement on the page. In this example, a '?' is used as a place holder for each Index in the 'myData' RowSet. The 'myData' RowSet contains six columns, therefore six '?' placeholders will be used in the query.
  5. Specify the RowSet variable name '${myData}' into the Input RowSet Variable field. The specified SQL Statement will be executed once per each row in this RowSet.
  6. Click the
    Save
    button when complete. When the Project is executed, data from the 'myData' RowSet variable will be inserted into the database.

0 COMMENTS

We’d like to hear from you!