airflow.operators.oracle_operator
¶
Module Contents¶
-
class
airflow.operators.oracle_operator.
OracleOperator
(sql, oracle_conn_id='oracle_default', parameters=None, autocommit=False, *args, **kwargs)[source]¶ Bases:
airflow.models.BaseOperator
Executes sql code in a specific Oracle database
- Parameters
sql (str or list[str]) – the sql code to be executed. Can receive a str representing a sql statement, a list of str (sql statements), or reference to a template file. Template reference are recognized by str ending in ‘.sql’ (templated)
oracle_conn_id (str) – reference to a specific Oracle database
parameters (mapping or iterable) – (optional) the parameters to render the SQL query with.
autocommit (bool) – if True, each command is automatically committed. (default value: False)