Skip to content
Permalink
c581131a1f
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
8 lines (6 sloc) 609 Bytes
# dlt-billing-csv-processing-with-aws-athena
Example on how to query DLT csv detailed billing reports with AWS Athena
Contents:
----------
- create_table_example.sql: Creates a table that matches the column format of a DLT details billing csv file. Due to the potential for quotes, OpenCSVSerde (http://docs.aws.amazon.com/athena/latest/ug/csv.html) must be used. The result is all field values are imported as STRINGS. Conversion of field values to different data types are possible on querying of data.
- query_example.sql: A sample query to retrieve the first ten 'LineItem' rows found in the database.