Christian Vielma
Christian Vielma

Reputation: 16035

Processing a text file from PL/SQL vs Java

I need to implement a store procedure in an Oracle database that will do the following:

I know I can do all these things with PL/SQL or Java (store procedure), but which will be more efficient/faster or better? most of the operations are reading/writing a file, and the database operations are done in a store procedure already.

I have read other posts about PL/SQL vs Java (like this and this) but none talks about this.

Upvotes: 0

Views: 878

Answers (1)

amphibient
amphibient

Reputation: 31358

I would never want to use a SQL dialect, no matter how versatile it may be, to do anything outside the DB. I would do what you're trying to do preferably in a shell or perl script, to use the lowest common denominator, although Java is OK, just perhaps a bit too sophisticated for a job this simple. But if Java is all you have or know how to use, then go for it.

Upvotes: 1

Related Questions