I have a PL/SQL procedure that does a lot of SUBSTRs on a VARCHAR2 parameter. I would like to remove the length limit, so I tried to change it to CLOB.
Works fine, but performance suffers, so I did some tests (based on these tests from 2005).
UPDATE: I can reproduce this on several different instances with different Oracle versions and different hardware, dbms_lob.substr is always noticeable slower than substr(CLOB), and a lot slower than SUBSTR(VARCHAR2).
Bob's results and the tests in the link above tell a different story.
Can anyone explain this, or at least reproduce either Bob's or my results? Thanks!
Test results:
+000000000 00:00:00.004000000 (VARCHAR2)
+000000000 00:00:00.298000000 (CLOB SUBSTR)
+000000000 00:00:00.356000000 (DBMS_LOB.SUBSTR)
Test code:
DECLARE
l_text VARCHAR2(30) := 'This is a test record';
l_clob CLOB := l_text;
l_substr VARCHAR2(30);
t TIMESTAMP;
BEGIN
t := SYSTIMESTAMP;
FOR i IN 1..100000 LOOP
l_substr := SUBSTR(l_text,1,14);
END LOOP;
dbms_output.put_line( SYSTIMESTAMP - t || ' (VARCHAR2)');
t := SYSTIMESTAMP;
FOR i IN 1..100000 LOOP
l_substr := SUBSTR(l_clob,1,14);
END LOOP;
dbms_output.put_line( SYSTIMESTAMP - t || ' (CLOB SUBSTR)');
t := SYSTIMESTAMP;
FOR i IN 1..100000 LOOP
l_substr := DBMS_LOB.SUBSTR(l_clob,14,1);
END LOOP;
dbms_output.put_line( SYSTIMESTAMP - t || ' (DBMS_LOB.SUBSTR)');
END;
14,1where the others are1,14. I'd also test something like10000, 5000as the point is that you're looking to break the 4k limit of VARCHAR. Also, as the results are about 75x slower for non VARCHAR, are you able to look at an algorithm that deals with a multiple VARCHARs? [Such as a normalised table where one field is the 'sequence_id' showing the relative position of this string, and the other is the VARCHAR]. Finally, although there is large relative difference, the absolute difference is low. So, does it matter? [Pre-optimisation] – Dems Apr 26 '12 at 11:0114,1and1,14is correct (thanks Oracle for the consistent APIs). I'm trying to break the32767Byte limit (PL/SQL, not SQL), and results are more or less the same when using text with that length(LPAD('X', 32767, 'X')). I have thought of that multiple-varchar-table solution, but I'd like to avoid it :) And it does matter, since the procedure is called really often, but most of all I'm curious if there are alternatives... – Peter Lang Apr 27 '12 at 9:58