OraSFTP – SFTP and FTPS for Oracle PL/SQL

OraSFTP (ORA_SFTP) is a PL/SQL package providing SFTP and FTPS client-side communication functionality for the Oracle (c) Database platform version 19 and above.

Send and Receive files from SFTP and FTPS servers directly from your Oracle PL/SQL code

DECLARE 
  connection_id NUMBER;  
  private_key BLOB;  
  private_key_password VARCHAR2(500);  
  username VARCHAR2(500);  
  hostname VARCHAR2(500);
  blob_data BLOB;
BEGIN
    blob_data := ... -- load the data to be uploaded
    hostname := 'localhost';
    username := 'didisoft';
    connection_id := ORA_SFTP.CONNECT_HOST(hostname, username, private_key, private_key_password);
 
    ORA_SFTP.UPLOAD(connection_id, blob_data, 'document.dat');    
    ORA_SFTP.DISCONNECT_HOST(connection_id);
END;

Didisoft OraSFTP

Current version 1.5.2.5
Build date 09 May 2023

Supported Oracle Database platforms:
Enterprise Edition (version 19+)
Standard Edition (version 12c, 18, 19, 21)

Functionality in brief
The package provides Oracle PL/SQL functions for SFTP and FTPS client-side communication. The standard SFTP functionality upload, download, list files, manage remote directories, etc., are available.

Supports PuTTY, OpenSSH, and ssh.com type of keys with algorithms RSA, DSA, ECDSA.

Licensing
The product is licensed per server or for a whole Enterprise (unlimited number of servers). OEM Licensing is also available.

Trial version limitations
30 days evaluation copy

Additional documentation