@@ -35,7 +35,7 @@ You also can use the macro function ${conn(connection-name)}.
3535- TRANSACTION_SERIALIZABLE (default): No dirty reads. Non-repeatable and phantom reads are prevented.
3636- Note: If the user role selected is SYSDBA or SYSOPER, the plugin will default to TRANSACTION_READ_COMMITTED to prevent ORA-08178 errors
3737
38- ** Connection Type** Whether to use an SID or Service Name when connecting to the database.
38+ ** Connection Type** Whether to use an SID, Service Name, or TNS Connect Descriptor when connecting to the database.
3939
4040** SID/Service Name/TNS Connect Descriptor:** Oracle connection point (Database name, Service name, or a TNS Connect Descriptor). When using TNS, place
4141the full TNS Connect Descriptor in the text field. For example:
@@ -44,6 +44,8 @@ the full TNS Connect Descriptor in the text field. For example:
4444
4545** Table Name:** Name of the table to export to.
4646
47+ ** Schema:** Name of the database schema to write to. If left blank it will default to the database login user
48+
4749** Username:** User identity for connecting to the specified database.
4850
4951** Password:** Password to use to connect to the specified database.
@@ -91,17 +93,19 @@ Data Types Mapping
9193
9294Example
9395-------
94- Suppose you want to write output records to "users" table of Oracle database named "XE" that is running on "localhost",
96+ Suppose you want to write output records to "users" table of Oracle database named (service name) "XE" that is running on "localhost",
9597port 1251, as "system" user with "oracle" password (Ensure that the driver for Oracle is installed. You can also provide
96- driver name for some specific driver, otherwise "oracle" will be used), then configure the plugin with:
98+ driver name for some specific driver, otherwise "oracle" will be used).
9799
98100```
99101Reference Name: "snk1"
100102Driver Name: "oracle"
101103Host: "localhost"
102104Port: 1251
103- Database: "XE"
105+ Connection Type: "Service Name"
106+ SID/Service Name/TNS Connect Descriptor: "XE"
104107Table Name: "users"
108+ Schema Name: "myschema"
105109Username: "system"
106110Password: "oracle"
107111```
0 commit comments