Inserts on a table with few indexes and no referencial integrity constraints
are done very fast on oracle, so a stored procedure will not be such a big
performance benefit. Oracle caches sql statements, so your prepared
insert statement (if you are using placeholders) will be read from cache and not
even compiled again.
My guess is that you will see a performance decrease if you put the sql command
in a string and executes it direct without using placeholders, but only a small one.
I usually use stored procedures (for inserts) to create a interface layer
for the database users, hiding the physical table design from them. This
way I can change the physical tables without needing to rewrite any
application code. So I advocate the use of stored procs for everything
(except building portable applications :)
/brother t0mas
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.