CustomPostgreSqlBulkCommand | | (Required) The custom PostgreSQL bulk load command to use.
In addition to the standard Logi tokens, the following custom tokens are also available. The values for these tokens are automatically defined based on the attribute values of your LoadDbTable.Insert element.
@Etl.BulkTableName~ = Table name to insert into.
@Etl.BulkFieldDelimiter~ = Field delimiter.
@Etl.BulkTextQualifier~ = Text qualifier.
@Etl.BulkRowDelimiter~ = Row delimiter.
Sample PostgreSQL bulk load command:
COPY @Etl.BulkTableName~ (field1, field2, etc) FROM STDIN WITH DELIMITER AS '@Etl.BulkFieldDelimiter~' CSV |