SFTP
Frends templates for SFTP. SFTP is a standard network protocol used for transferring files over a network.
This process will connect to an SFTP server and read a CSV file, which contains the data to UPDATE in the specified table in the Oracle database.
This template assumes that the following prerequisites are in place:
This template only performs UPDATEs into the Oracle database table specified in the Process Variables.
The input CSV file must contain the data to be updated and can contain any column names from the Oracle database table.
Example CSV data
email;state;phone
dave21@frends.com;CA;123456789
dave51@frends.com;NH;123456789
dave52@frends.com;NY;123456789
dave53@frends.com;NY;123456789
This template does not handle transient errors separately, however the connection to the SFTP server and Oracle database are retried three time before failing.
The template does not handle any SQL errors that may occur - the errors will be thrown as exceptions.
FilePath | Name of the file to be read from the SFTP server. |
SftpServerAddress | SFTP server address. |
ServerUser | SFTP server user. |
ServerPassword 🗝 | SFTP server user's password. |
OracleConnectionString 🗝 | Connection string to access the database. |
TableName | Name of the database table. |
RowIndentifier | Criteria by which to match data in the table. |