It's not clear from your description exactly what role Perl needs to play in your problem. Are you using it to generate the output of your report, or are you looking at Perl purely as a tool to make the join?
Assuming that the end-result of the join query needs to be available to Perl, a couple of possibilities spring to mind.
The first, although it doesn't meet your requirement that another database not be used, is that you use a SQLite database (created and accessed using
DBD::SQLite) to create a temporary store for the source data from your report. This would leave you with a single SQLite file in your filesystem which you could discard when your reporting process had completed, then regenerate the next day. You get the benefit of a (more or less) SQL-92 compliant RDBMS, without any of the headache of management.
SQLite is fast, even with large datasets - it's limitations are mostly when supporting multi-user environments, which shouldn't be an issue for offline reporting.
The second (non-Perl) option would be that you explore making the Oracle database visible from Firebird, or vice-versa, using whatever remote datasource tools are available. I don't know Firebird, but I'm certain Oracle has tools to enable you to connect to and use other databases in Oracle queries. Other, more Oracle-literate Monks may have suggestions here.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.