Call now: 252-767-6166  
Oracle Training Oracle Support Development Oracle Apps

 
 Home
 E-mail Us
 Oracle Articles
New Oracle Articles


 Oracle Training
 Oracle Tips

 Oracle Forum
 Class Catalog


 Remote DBA
 Oracle Tuning
 Emergency 911
 RAC Support
 Apps Support
 Analysis
 Design
 Implementation
 Oracle Support


 SQL Tuning
 Security

 Oracle UNIX
 Oracle Linux
 Monitoring
 Remote s
upport
 Remote plans
 Remote
services
 Application Server

 Applications
 Oracle Forms
 Oracle Portal
 App Upgrades
 SQL Server
 Oracle Concepts
 Software Support

 Remote S
upport  
 Development  

 Implementation


 Consulting Staff
 Consulting Prices
 Help Wanted!

 


 Oracle Posters
 Oracle Books

 Oracle Scripts
 Ion
 Excel-DB  

Don Burleson Blog 


 

 

 


 

 

 
 

Execute Immediate on Large Insert Strings

Oracle Database Tips by Donald Burleson

Question:  I've run into a snag where I am executing an insert statement that has a particularly large field requiring some dynamic SQL. I've declared my string variable being executed as a VARCHAR2(32767). I've done quite a bit of searching on the web and there sure are a lot of people suggesting fixes to this that don't work.

I've tried a few things including using a bind variable for my very large value. The last suggested fix I haven't tried is breaking down the large value into a varchar2s and passing it into DBMS_SQL.PARSE, which seems very dated and unnecessary.   The basic problem is the following:

DECLARE
   v_query VARCHAR2(32767);
BEGIN
   FOR ... LOOP
      --populate v_query with necessary data
   END LOOP;
  
   EXECUTE IMMEDIATE v_query;
END;

This code returns the error "ORA-01704: string literal too long".

I have tentatively solved this problem by issuing an update statement and simply updating my field in the table (it is a CLOB) with the data necessary after the EXECUTE IMMEDIATE and leaving it null in the initial insert. However, I would like to try and keep this all within my insert statement if possible. The code above works just fine so long as v_query < 4000 characters (I know this based on the fact that the largest values being inserted are 3998 characters).

 Answer:  You may want to use a CLOB datatype for this.

String literals in SQL are limited to 4000 characters. Your dynamic SQL is trying to concatenate the CLOB as part of the SQL statement, turning it into a string literal. If dynamic SQL were required, you'd need to use bind variables.

 See here for complete details on converting a long datatype to a CLOB. 

EXECUTE IMMEDIATE 'INSERT INTO some_table( clob_column ) VALUES( :1 )' USING p_clob_parameter

Follow the link for more information on Late Binding and Runtime Binding in PL/SQL  

 
Get the Complete
Oracle SQL Tuning Information 

The landmark book "Advanced Oracle SQL Tuning  The Definitive Reference"  is filled with valuable information on Oracle SQL Tuning. This book includes scripts and tools to hypercharge Oracle 11g performance and you can buy it for 30% off directly from the publisher.

 

 

��  
 
 
Oracle Training at Sea
 
 
 
 
oracle dba poster
 

 
Follow us on Twitter 
 
Oracle performance tuning software 
 
Oracle Linux poster
 
 
 

 

Burleson is the American Team

Note: This Oracle documentation was created as a support and Oracle training reference for use by our DBA performance tuning consulting professionals.  Feel free to ask questions on our Oracle forum.

Verify experience! Anyone considering using the services of an Oracle support expert should independently investigate their credentials and experience, and not rely on advertisements and self-proclaimed expertise. All legitimate Oracle experts publish their Oracle qualifications.

Errata?  Oracle technology is changing and we strive to update our BC Oracle support information.  If you find an error or have a suggestion for improving our content, we would appreciate your feedback.  Just  e-mail:  

and include the URL for the page.


                    









Burleson Consulting

The Oracle of Database Support

Oracle Performance Tuning

Remote DBA Services


 

Copyright © 1996 -  2020

All rights reserved by Burleson

Oracle ® is the registered trademark of Oracle Corporation.