Discover how a bimodal integration strategy can address the major data management challenges facing your organization today.
Get the Report →Connect to Workday Data in DBArtisan
Use wizards in DBArtisan to configure Workday data as a data source.
The CData ODBC Driver for Workday seamlessly integrates Workday data into database management tools like DBArtisan by enabling you to access Workday data as a database. This article shows how to create an data source for Workday in DBArtisan and execute queries. You can then edit data visually and execute standard SQL.
Integrate Workday Data into DBArtisan Projects
If you have not already, first specify connection properties in an ODBC DSN (data source name). This is the last step of the driver installation. You can use the Microsoft ODBC Data Source Administrator to create and configure ODBC DSNs.
To connect to Workday, users need to find the Tenant and BaseURL and then select their API type.
Obtaining the BaseURL and Tenant
To obtain the BaseURL and Tenant properties, log into Workday and search for "View API Clients." On this screen, you'll find the Workday REST API Endpoint, a URL that includes both the BaseURL and Tenant.
The format of the REST API Endpoint is: https://domain.com/subdirectories/mycompany, where:
- https://domain.com/subdirectories/ is the BaseURL.
- mycompany (the portion of the url after the very last slash) is the Tenant.
Using ConnectionType to Select the API
The value you use for the ConnectionType property determines which Workday API you use. See our Community Article for more information on Workday connectivity options and best practices.
API | ConnectionType Value |
---|---|
WQL | WQL |
Reports as a Service | Reports |
REST | REST |
SOAP | SOAP |
Authentication
Your method of authentication depends on which API you are using.
- WQL, Reports as a Service, REST: Use OAuth authentication.
- SOAP: Use Basic or OAuth authentication.
See the Help documentation for more information on configuring OAuth with Workday.
You can then follow the steps below to register Workday data as a database instance in your project:
- In DBArtisan, click Data Source -> Register Datasource.
- Select Generic ODBC.
- Enter a name for the data source and select the DSN.
- Finish the wizard to connect to Workday data. Workday entities are displayed in the Datasource Explorer.
You can now work with Workday data as you work with any other database. See the driver help documentation for more information on the queries supported by the Workday API.