Publish Outlook-Connected Dashboards in Tableau Server via JDBC
Tableau Server is a visual analytics platform transforming the way businesses use data to solve problems. When paired with the CData API Driver for JDBC, you get access to live Outlook data within Tableau Server. This article shows how to connect to Outlook in Tableau Desktop, publish a Data Source to Tableau Server, and build a simple chart from that data.
The CData JDBC Driver enables high-speed access to live Outlook data in Tableau Server. Once you install the driver, you simply authenticate with Outlook and you can immediately start building responsive, dynamic visualizations and dashboards. By surfacing Outlook data using native Tableau data types and handling complex filters, aggregations, & other operations automatically, CData JDBC Driver grants seamless access to Outlook data.
Enable Connectivity to Outlook in Tableau Server
Start by installing the CData JDBC Driver on the machine hosting Tableau Server.
If your server is a Linux Machine:
- Copy cdata.jdbc.api.jar and cdata.tableau.api.lic.
- Place the copies in the Tableau Server Connectors folder (/opt/tableau/tableau_driver/jdbc).
- Restart Tableau Server.
If your server is a Windows Machine:
- Copy cdata.jdbc.api.jar and cdata.tableau.api.lic.
- Place the copy in the Tableau Server drivers directory (C:\ Program Files\Tableau\Drivers).
- Restart Tableau Server.
Next, install the CData JDBC Driver on the machine running Tableau Desktop. Before starting Tableau on Windows, make sure that you have placed the .jar file in the C:\Program Files\Tableau\Drivers folder. Before starting Tableau on macOS, make sure that you have placed the .jar file in the ~/Library/Tableau/Drivers folder.
Connect to Outlook in Tableau Desktop
Once the driver is installed on the Server machine, we can configure a connection to Outlook in Tableau Desktop and publish a Outlook-based Data Source to Tableau Server.
- Open Tableau Desktop.
- Click More under Connect -> To a Server.
- Select "Other Databases (JDBC)".
- Configure the connection to the data. The driver comes with a connection string builder that streamlines creating and managing the content of connection strings. Note that you will need to manually add "jdbc:api" to the beginning of the connection string.
- Click "Sign In".
Using OAuth Authentication
Microsoft Graph API uses OAuth 2.0 for authentication. You must register an application in the Microsoft Azure Portal to obtain OAuth credentials (Client ID and Client Secret).
Obtaining OAuth Credentials
- Log in to the Azure Portal.
- Navigate to Azure Active Directory > App registrations.
- Click New registration to create a new application.
- Enter an application name and select the appropriate account types.
- Set the Redirect URI to your application's callback URL (e.g., http://localhost:33333 for desktop apps).
- Click Register to create the application.
- On the application overview page, copy the Application (client) ID - this is your OAuthClientId.
- Navigate to Certificates & secrets and create a new client secret.
- Copy the client secret value - this is your OAuthClientSecret.
- Navigate to API permissions and add the required Microsoft Graph API permissions:
- Mail.Read - For accessing email messages
- Contacts.Read - For accessing contacts
- Calendars.Read - For accessing calendar events
- Tasks.Read - For accessing To Do tasks
- offline_access - For obtaining refresh tokens
- Click Grant admin consent to grant these permissions.
Connecting with OAuth
After setting the following connection properties, you are ready to connect:
- AuthScheme: Set this to OAuth.
- InitiateOAuth: Set this to GETANDREFRESH. The CData API Profile for Outlook will automatically walk through the OAuth process in order to obtain the access token.
- OAuthClientId: Set this to the Application (client) ID from Azure Portal.
- OAuthClientSecret: Set this to the client secret value from Azure Portal.
- TenantId: Set this to your Azure AD tenant identifier (GUID or domain name like 'contoso.onmicrosoft.com').
- CallbackURL: Set this to the Redirect URI you specified in your app registration (e.g., http://localhost:33333 for desktop apps).
Example connection string
Profile=C:\profiles\Outlook.apip;AuthScheme=OAuth;InitiateOAuth=GETANDREFRESH;OAuthClientId=your_client_id;OAuthClientSecret=your_client_secret;TenantId=your_tenant_id;CallbackUrl=http://localhost:33333;
Discover Schemas and Query Data
Once you establish the connection to Outlook data, you can configure which entities to visualize.
- Select CData from the Database pull-down menu.
- Select API from the Schema pull-down menu.
- Drag the tables and views you wish to visualize onto the join area. You can include multiple tables.
- Select Update Now or Automatically Update. Update Now lets you preview the first 10,000 rows of the data source (or enter the number of rows you want to see in the Rows text box). Automatically Update auto-loads the changes in the preview area.
Publish Data to Tableau Server
After you configure the data you wish to visualize, you can publish the Data Source to a Tableau Server instance. In Tableau Desktop:
- Click Server -> Sign In.
- Enter the URL for your Tableau Server.
- Authenticate with Tableau Server credentials.
- Click Server -> Publish Data Source and select your data source.
- Click Publish.
- Select the Project, name the Data Source, and optionally add a description.
- Click Publish.
This creates a new entry under the server's data source list, from which you an change the data source's permissions, view its history, and perform other management tasks.
Note that workstation connected to the same server will be able to use the same source in Tableau Desktop, even if the driver isn't installed there. Also, workbooks created directly on Tableau Server (via the web interface) can use this source.
Visualize Outlook Data in Tableau Server
With the Data Source published to Tableau Server, you are ready to visualize Outlook data.
- Login to your Tableau Server instance.
- Connect to the remote source using the Search for Data -> Tableau Server in the Connect sidebar.
- Click the published Data Source.
- Click New Workbook.
- In the workbook, Outlook fields are listed as Dimensions and Measures, depending on the data type. The CData JDBC Driver discovers data types automatically, allowing you to leverage the powerful data processing and visualization features of Tableau.
- Drag a field from the Dimensions or Measures area to Rows or Columns. Tableau creates column or row headers.
- Select one of the chart types from the Show Me tab. Tableau displays the chart type that you selected.
Using the CData API Driver for JDBC with Tableau Server, you can easily create robust visualizations and reports on Outlook data. Download a free, 30-day trial and get started today.