vote up 2 vote down star

While attempting to execute SQL insert statements using Oracle SQL Developer I keep generating a "Enter substitution value" prompt:

Insert into AGREGADORES_AGREGADORES (IDAGREGADOR,NOMBRE,URL) values (2,'Netvibes','http://www.netvibes.com/subscribe.php?type=rss\&url=');

I've tried escaping the special character in the query using the '\' above but I still can't avoid the ampersand, '&', causing a string substitution.

Go ahead punks, make my day :)

flag
I've had this problem before, and thought it was something to do with a SQL Developer option to deactivate in the editor. – ian_scho_es Jul 16 at 12:57

3 Answers

vote up 6 vote down check

Set the define character to something other than &

SET DEFINE ~
create table blah (x varchar(20));
insert into blah (x) values ('blah&amp');
select * from blah;

X                    
-------------------- 
blah&amp 

link|flag
7  
or SET DEFINE OFF – dpbradley Jul 16 at 12:58
That's it! Now I remember :) – ian_scho_es Jul 16 at 13:05
vote up 1 vote down
insert into AGREGADORES_AGREGADORES (IDAGREGADOR,NOMBRE,URL)
values (2,'Netvibes',
'http://www.netvibes.com/subscribe.php?type=rss' || chr(38) || 'amp;url=');
link|flag
That worked. TY. – ian_scho_es Jul 16 at 12:56
vote up 1 vote down

the & is the default value for DEFINE, which allows you to use substitution variables. I like to turn it off using

SET DEFINE OFF

then you won't have to worry about escaping or CHR(38).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.