2
votes
If I’m posting a question about Oracle SQL query performance, what should I include in my question?
Ideally, get the full query plan using DBMS_XPLAN.DISPLAY_CURSOR using the sql_id and child_cursor_id from v$sql. Failing that (ie on older versions), try v$sql_plan and include filter and access p …
1
vote
Performance of Dynamic SQL with Bind vs Normal SQL within Package
Depending on the exact needs, you have several alternatives for improving the delete speed.
Firstly, store a bunch of IDs in a PL/SQL array and periodically (and at the end) do either a FOR …
0
votes
Inserts are 4x slower if table has lots of record (400K) vs. if it’s empty
You don't say which columns are indexed. If you had indexes on fax, phone or email, you would have had a LOT of duplicates (ie every row).
Oracle 'pretends' to have non-unique indexes. In reality e …
0
votes
pl/sql Stored procedure… where does the execution time go?
What does the procedure do ?
One possible explanation may be DBMS_OUTPUT.
If, on SQL*Plus, you do a SET SERVEROUTPUT ON, after a statement has executed, the client does a 'behind-the-scenes' fetch …
0
votes
String matching in Oracle 10g where either side can have wildcards
Is the mask only a single character ?
If so you can limit the possibilities by something like
select VALS from tmp
where specialmatch(vals,'12945678')
and (substr(vals,1,4) = subst …
0
votes
String matching in Oracle 10g where either side can have wildcards
Next suggestions.
Simple option : The _ is the single character match for LIKE, so the simple solution is
SELECT * FROM tmp WHERE vals LIKE v_param OR v_param LIKE vals;
…
