Implementing an FTP server in PL/SQL

Paul James 5
0 0
Read Time:2 Minute, 2 Second

The problem: I recently had to resolve a problem at a client’s site where an automated database provisioning process was regularly failing due to LAN outages.

Under normal circumstances, a DOS batch file was scheduled to fetch a list of files from an FTP server and then call Oracle stored procedures to generate further FTP scripts. After fetching and importing these files, import logs would be sent back to the FTP server.

However, the LAN used between the database server and the FTP server proved to be exceptionally unreliable, causing the Windows-based FTP client to fail in an unpredictable manner and stopping the batch in mid-stride. Quite often this meant that the correct sequence of stored procedures also failed to execute, leaving the import incomplete.

The solution:

Due to the fact that the Windows FTP client does not provide the necessary error/return codes, I decided to re-design the process by bringing all FTP activities into Oracle, treating the whole process as a series of transactions. This makes it possible to keep track of the process status in the database and to rollback incomplete imports. Incomplete activities (eg. sending log files back) can be restarted properly when the next provisioning job runs.

A search for a (free) PL/SQL FTP client directed me to MyOraclePortal, where I found FTP_INTERFACE v.2.0.0.

While this version supports PUT, GET, REMOVE and RENAME functionality, I also needed to see what files were available on the FTP server.

Accordingly, I made the following changes to the package:

  •      Added dir and ls functionality,
  •     Changed RENAME to REN, since RENAME is an Oracle reserved word (it isn’t a problem, I’m just fussy about reserved words),
  •     The variable v_mode is now only used for deciding what to do on local filesystem (otherwise more values are needed for different handling of dir and ls compared to get)
  • The variable v_tsfr_mode is used instead of v_mode to determine actions on remote server.

In the current process, only text file transfers are required and the package works well. Before sending my changes to Barry Chase at MyOraclePortal, I (unsuccessfully) tested binary transfers. I haven’t resolved the errors I get with binary transfers, so be forewarned that your mileage may vary (YMMV) if you use my package. To date, Barry hasn’t completed testing my changes yet.
Here’s my version:

FTP interface package 

 

 

 

 

 

 

Happy
Happy
0 %
Sad
Sad
0 %
Excited
Excited
0 %
Sleepy
Sleepy
0 %
Angry
Angry
0 %
Surprise
Surprise
0 %

Average Rating

5 Star
0%
4 Star
0%
3 Star
0%
2 Star
0%
1 Star
0%

5 thoughts on “Implementing an FTP server in PL/SQL

  1. Just an FYI… I did resolve the binary file transfer issue and added a number of additional features, using some of what Paul did regarding the listing of remote files. I also added handling for BLOB and CLOB so that you don’t even need to technically write the file to the filesystem but instead insert directly into a table or even attach to the PLSQL email solution I also have and email the file elsewhere.

    Still free for the downloading and it is now at 3.1.3… http://www.myoracleportal.net

    P.S. Thanks for the plug Paul. I need to add your credits to the package header with respect to the directory listing feature. When you get a chance you might take a look at the new version.

  2. I’m a bit late replying I know, but FYI I’m using your package for transferring binary files and it’s working like a dream, nice work!

    Cheers
    Graham

Comments are closed.

Next Post

Using Lucene with Spring Introduction to Spring Modules

While preparing a Lucene presentation and workshop I came across Spring Modules. It’s a small set of libraries that does things the Spring-way. It isn’t included in Spring because it doesn’t belong to the ‘core-business’ of Spring. I’m not writing about the possibilities of Spring Modules,  I’ll only focus on […]
%d bloggers like this: