製品をチェック

無償トライアル:

無償トライアルへ

製品の情報と無償トライアルへ:

Workday JDBC Driver

Workday データを組み込んだパワフルなJava アプリケーションを短時間・低コストで作成して配布できます。

データ連携でお困りですか?

お問い合わせ

Clover ETL からWorkday データに連携


データ連携ツールのCloverETL のビジュアルワークフローでWorkday データ連携を作成。


加藤龍彦
ウェブデベロッパー

workday ロゴ画像

JDBC Driver

jdbc ロゴ画像
CloverDX ロゴ画像

CData JDBC Driver for Workday は、CloverETL からWorkday へのクエリ 処理を実現します。本記事では、CloverETL でJDBC Driver を使い、Workday をシンプルなCSV ファイルに変換します。

JDBC Data Source でWorkday に接続

  1. Workday データへの連携を作成します。CloverETL の新しいgraph で、Outline ペインのConnections ノードを右クリックして、Create Connection をクリックします。Database Connection ウィザードが表示されます。
  2. +アイコンをクリックして、.jar ファイルをロードします。インストールディレクトリのlib フォルダの cdata.jdbc.workday.jar ファイルを選択します。
  3. JDBC URL を入力します。一般的な接続文字列は: jdbc:workday:User=myuser;Password=mypassword;Tenant=mycompany_gm1;Host=https://wd3-impl-services1.workday.com

    To connect, there are three pieces of information required: Authentication, API URL, and WSDL URL.

    Authentication

    To authenticate, specify your User and Password. Note that you must append your Tenant to your User separated by an '@' character. For instance, if you normally log in with 'geraldg' and your Tenant is 'mycompany_mc1', then your User should be specified as 'geraldg@mycompany_mc1'.

    API URL

    The API URL may be specified either directly via APIURL, or it may be constructed from the Tenant, Service, and Host. The APIURL is constructed in the following format: <Host>/ccx/service/<Tenant>/<Service>.

    WSDL URL

    The WSDLURL may be specified in its entirety, or may be constructed from the Service and WSDLVersion connection properties. The WSDLURL is constructed in the following format: https://community.workday.com/sites/default/files/file-hosting/productionapi/<Service>/<WSDLVersion>/<Service>.wsdl

Required connection properties specified in the JDBC URL.(Salesforce is shown.)

DBInputTable コンポーネントで、Workday データをクエリ

  1. DBInputTable をReaders セクションからドラッグし、ジョブフローに置きます。ダブルクリックして、設定エディタを開きます。
  2. DB コネクションプロパティで、Workday JDBC をドロップダウンから選択します。
  3. SQL クエリを入力します。例: SELECT * FROM Workers

UniversalDataWriter でQuery のOutput を記述

  1. Writer セクションからUniversalDataWriter をドラッグして、ジョブフローに置きます。
  2. UniversalDataWriter をダブルクリックして、設定エディタを開き、ファイルURL を足します。
  3. DBInputTable をダブルクリックして、Extract Metadata をクリックします。
  4. DBInputTable のOutput ポートをUniversalDataWriter に接続します。
  5. UniversalDataWriter のSelect Metadata メニューでWorkers テーブルを選択します。(UniversalDataWriter のInput ポートを右クリックしてメニューを開くことも可能です。)
  6. Run をクリックして、ファイルの書き込みを実行します。
A simple transfer to a flat file.