ExasolOperator

Exasol

Executes sql code in a specific Exasol database

View on GitHub

Last Updated: Jan. 9, 2023

Access Instructions

Install the Exasol provider package into your Airflow environment.

Import the module into your DAG file and instantiate it with your desired params.

Parameters

sqlthe SQL code to be executed as a single string, or a list of str (sql statements), or a reference to a template file. template references are recognized by str ending in ‘.sql’
exasol_conn_idreference to a specific Exasol database
autocommitif True, each command is automatically committed. (default value: False)
parameters(optional) the parameters to render the SQL query with.
schema(optional) name of the schema which overwrite defined one in connection
handler(optional) handler to process the results of the query

Documentation

Executes sql code in a specific Exasol database

Was this page helpful?