Insert rows into a database using R & ODBC.

Parameters:

Parameters:
See dedicated page for more information.
The R_ODBCInsert action is designed to insert rows into a database table via an ODBC connection using R. This component is useful when working in the free community version of the data modeler and you need a lightweight way to send data to an external database without relying on commercial connectors.
Important: This action is not officially supported by Altrnativ. For enterprise-grade performance and support, use
upsertODBCorTeradataWriterfrom theoutputcategory instead.
Use R_ODBCInsert when:
Columns to insert in database: The data frame (table) you want to insert into the database.Table name in database: The target table name in your database (e.g., my_Table_Name).Windows ODBC connection name (dsn): The ODBC connection name configured on your system (e.g., my_ODBC_DSN).Overwrite table: Enable this to overwrite the existing table (disabled by default).Append to table: Enable this to append rows to the existing table (enabled in the example).You should define either Overwrite or Append depending on your update strategy — not both simultaneously.
You’ve completed preprocessing a dataset in the ETL pipeline and now want to store the resulting table in a local or remote SQL database using ODBC. You configure the connection (Windows ODBC connection name (dsn)), define the target table name, and decide whether to overwrite or append the data.
