Ready to get started?

Download a free trial of the Amazon Athena ODBC Driver to get started:

 Download Now

Learn more:

Amazon Athena Icon Amazon Athena ODBC Driver

The Amazon Athena ODBC Driver is a powerful tool that allows you to connect with live data from Amazon Athena, directly from any applications that support ODBC connectivity.

Access Amazon Athena interactive query services data like you would a database, through a standard ODBC Driver interface.

Use the CData ODBC Driver for Amazon Athena in SAS for Real-Time Reporting and Analytics



Connect to real-time Amazon Athena data in SAS for reporting, analytics, and visualizations using the CData ODBC Driver for Amazon Athena.

SAS is a software suite developed for advanced analytics, multivariate analysis, business intelligence, data management, and predictive analytics. When you pair SAS with the CData ODBC Driver for Amazon Athena, you gain database-like access to live Amazon Athena data from SAS, expanding your reporting and analytics capabilities. This articles walks through creating a library for Amazon Athena in SAS and creating a simple report based on real-time Amazon Athena data.

The CData ODBC Driver offers unmatched performance for interacting with live Amazon Athena data in SAS due to optimized data processing built into the driver. When you issue complex SQL queries from SAS to Amazon Athena, the driver pushes supported SQL operations, like filters and aggregations, directly to Amazon Athena and utilizes the embedded SQL engine to process unsupported operations (often SQL functions and JOIN operations) client-side. With built-in dynamic metadata querying, you can easily visualize and analyze Amazon Athena data in SAS.

Connect to Amazon Athena as an ODBC Data Source

Information for connecting to Amazon Athena follows, along with different instructions for configuring a DSN in Windows and Linux environments (the ODBC Driver for Amazon Athena must be installed on the machine hosting the SAS System).

Authenticating to Amazon Athena

To authorize Amazon Athena requests, provide the credentials for an administrator account or for an IAM user with custom permissions: Set AccessKey to the access key Id. Set SecretKey to the secret access key.

Note: Though you can connect as the AWS account administrator, it is recommended to use IAM user credentials to access AWS services.

Obtaining the Access Key

To obtain the credentials for an IAM user, follow the steps below:

  1. Sign into the IAM console.
  2. In the navigation pane, select Users.
  3. To create or manage the access keys for a user, select the user and then select the Security Credentials tab.

To obtain the credentials for your AWS root account, follow the steps below:

  1. Sign into the AWS Management console with the credentials for your root account.
  2. Select your account name or number and select My Security Credentials in the menu that is displayed.
  3. Click Continue to Security Credentials and expand the Access Keys section to manage or create root account access keys.

Authenticating from an EC2 Instance

If you are using the CData Data Provider for Amazon Athena 2018 from an EC2 Instance and have an IAM Role assigned to the instance, you can use the IAM Role to authenticate. To do so, set UseEC2Roles to true and leave AccessKey and SecretKey empty. The CData Data Provider for Amazon Athena 2018 will automatically obtain your IAM Role credentials and authenticate with them.

Authenticating as an AWS Role

In many situations it may be preferable to use an IAM role for authentication instead of the direct security credentials of an AWS root user. An AWS role may be used instead by specifying the RoleARN. This will cause the CData Data Provider for Amazon Athena 2018 to attempt to retrieve credentials for the specified role. If you are connecting to AWS (instead of already being connected such as on an EC2 instance), you must additionally specify the AccessKey and SecretKey of an IAM user to assume the role for. Roles may not be used when specifying the AccessKey and SecretKey of an AWS root user.

Authenticating with MFA

For users and roles that require Multi-factor Authentication, specify the MFASerialNumber and MFAToken connection properties. This will cause the CData Data Provider for Amazon Athena 2018 to submit the MFA credentials in a request to retrieve temporary authentication credentials. Note that the duration of the temporary credentials may be controlled via the TemporaryTokenDuration (default 3600 seconds).

Connecting to Amazon Athena

In addition to the AccessKey and SecretKey properties, specify Database, S3StagingDirectory and Region. Set Region to the region where your Amazon Athena data is hosted. Set S3StagingDirectory to a folder in S3 where you would like to store the results of queries.

If Database is not set in the connection, the data provider connects to the default database set in Amazon Athena.

When you configure the DSN, you may also want to set the Max Rows connection property. This will limit the number of rows returned, which is especially helpful for improving performance when designing reports and visualizations.

Windows

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.

Linux

If you are installing the CData ODBC Driver for Amazon Athena in a Linux environment, the driver installation predefines a system DSN. You can modify the DSN by editing the system data sources file (/etc/odbc.ini) and defining the required connection properties.

/etc/odbc.ini

[CData AmazonAthena Sys] Driver = CData ODBC Driver for Amazon Athena Description = My Description AccessKey = 'a123' SecretKey = 's123' Region = 'IRELAND' Database = 'sampledb' S3StagingDirectory = 's3://bucket/staging/'

For specific information on using these configuration files, please refer to the help documentation (installed and found online).

Create a Amazon Athena Library in SAS

Connect to Amazon Athena in SAS by adding a library based on the CData ODBC Driver for Amazon Athena.

  1. Open SAS and expand Libraries in the Explorer pane.
  2. In the Active Libraries window, right-click and select New.
  3. Name your library (odbclib), select ODBC as the Engine, and click to Enable at startup (if you want the library to persist between sessions).
  4. Set Data Source to the DSN you previously configured and click OK.

Create a View from a Amazon Athena Query

SAS natively supports querying data either using a low-code, point-and-click Query tool or programmatically with PROC SQL and a custom SQL query. When you create a View in SAS, the defining query is executed each time the view is queried. This means that you always query live Amazon Athena data for reports, charts, and analytics.

Using the Query Tool

  1. In SAS, click Tools -> Query
  2. Select the table sources and the table(s) you wish to pull data from. Then, click OK.
  3. Select columns and right-click to add filtering, ordering, grouping, etc.
  4. Create a local view to contain the query results by right-clicking the SQL Query Tool window, selecting Show Query, and clicking Create View. Name the View and click OK.

Using PROC SQL

  1. In SAS, navigate to the Editor window.
  2. Use PROC SQL to query the data and create a local view.
    NOTE: This procedure creates a view in the Work library. You can optionally specify a library in the create view statement.
    proc sql;
      create view customers_view as
      select 
        name, 
        totaldue 
      from 
        odbclib.customers 
      where 
        CustomerId = '12345';
    quit;
    
  3. Click Run -> Submit to execute the query and create a local view.

Report On or Visualize Amazon Athena Data in SAS

With a local view created, you can report, visualize, or otherwise analyze Amazon Athena data using the powerful SAS features. Print a simple report using PROC PRINT and create a basic graph based on the data using PROC GCHART.

Print an HTML Report

  1. In SAS, navigate to the Editor window.
  2. Use PROC PRINT to print an HTML report for the Amazon Athena Customers data.
    proc print data=customers;
      title "Amazon Athena Customers Data";
    run;
    

Print a Chart

  1. In SAS, navigate to the Editor window.
  2. Use PROC GCHART to create a chart for the Customers data.
    proc gchart data=customers;
      pie name / sumvar=totaldue
          value=arrow
          percent=arrow
          noheading
          percent=inside plabel=(height=12pt)
          slice=inside value=none
          name='CustomersChart';
    run;