Oracle Export

Export data to an Oracle database.

Example

engine: oracle:export
connection:
  host: db.example.com:1521
  user: admin
  password: MyP4$$w0rd
  service_name: XEPDB1
table: EMPLOYEES

Properties

NameType
engineString=oracle:export
connectionObject
tableString
schemaObject

engine

Must be oracle:export.

Required
Yes

connection

The SQL connection parameters.

Required
No

Properties

NameType
hostString
userString
passwordString
service_nameString
sidString
instance_nameString

connection.host

The network address of the Oracle server e.g. `db.example.com:1521`.

Required
Yes

connection.user

The username to authenticate to Oracle.

Required
Yes

connection.password

The password to authenticate to Oracle. Requires `username`.

Required
Yes

connection.service_name

The service name of the Oracle database.

Required
No

connection.sid

The SID of the Oracle database.

Required
No

connection.instance_name

The name of the Oracle instance.

Required
No

table

The name of the Oracle table.

Required
Yes

schema

Define a schema for the data.

Required
Yes