bind_param_array would seem to be what you're looking for. I haven't checked the details but you may be able combine it with the BULK COLLECT and FORALL modifiers for SELECT and INSERT/UPDATE statements to improve performance. Another option would be to add the hint
/*+ APPEND */ to your INSERT statement which will bypass the SQL layer completely and do a direct path insert. This will consume space (blocks are only added beyond the high water mark) but performance is increased.
For massive (one-off) loads, pre-sort the data, alter the tables to be loaded to be NOLOGGING, use a direct path load method, re-enable LOGGING, build the indexes (massively increase SORT_AREA_SIZE for this session), take a cold backup and restart the database.
rdfield
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.