Skip to main content
Database operations enable you to connect to databases and execute queries against them. You can use these operations to apply transformations after a job run, create a logging system, and much more. The example below uses the dbNonQuery operation in the post-job event to insert a new row that logs the job results:

Operations

dbListTables

Lists the tables in the database.

dbListColumns

Lists the columns of a table or a view.

dbQuery

Executes a query against the database.

dbNonQuery

Executes a nonquery against the database.

dbCall

Executes a stored procedure in the database.

dbBeginTransaction

Start a transaction in the database.

dbEndTransaction

End a Transaction by commiting or rolling back.