Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> RE: execute immediate 'insert into ...'

RE: execute immediate 'insert into ...'

From: Mercadante, Thomas F (LABOR) <Thomas.Mercadante_at_labor.state.ny.us>
Date: Fri, 9 Sep 2005 10:49:59 -0400
Message-ID: <ABB9D76E187C5146AB5683F5A07336FF35FBC6@EXCNYSM0A1AJ.nysemail.nyenet>


Joe,

Try this:

execute immediate 'insert into test values (' ||

                   2 || '''' || ',' || '''' ||

'joe' || '''' || ',' || '''' ||
'07-JUN-05' || ')';

The nest way to test this is to select the above string from dula to see if it is formatted correctly:

Select 'insert into test values (' ||

                   2 || '''' || ',' || '''' ||

'joe' || '''' || ',' || '''' ||
'07-JUN-05' || ')'

from dual;

If the quotes look correct, then try executing it.

Tom

-----Original Message-----
From: oracle-l-bounce_at_freelists.org
[mailto:oracle-l-bounce_at_freelists.org] On Behalf Of Joe Smith Sent: Friday, September 09, 2005 10:31 AM To: oracle-l_at_freelists.org
Subject: execute immediate 'insert into ...'

I am trying to insert records into a table through execute immediate. The
number datatypes go in with no problem. It is the varchar2 and date formats
that are giving me a problem.

examples:

desc tables test
col1 number,
col2 varchar2(30)
col3 date

execute immediate 'insert into test values ('|| 2 ||', '|| joe ||', '|| 07-JUN-05 ||')'; I have tried different ways to format the varchar2 and date datatype, but
keeps giving me an error.

How do I format these datatypes within an execute immediate?

thanks.



Express yourself instantly with MSN Messenger! Download today - it's FREE!
http://messenger.msn.click-url.com/go/onm00200471ave/direct/01/
--
http://www.freelists.org/webpage/oracle-l
--
http://www.freelists.org/webpage/oracle-l
Received on Fri Sep 09 2005 - 09:52:00 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US