I’m testing a script which deletes a series of values in SQLDeveloper. To be safe, I had SQLDeveloper generate Insert statements for all existing data, so I could restore it if something went wrong. One of the statements is like:
Insert into MY_TABLE (KEY,VALUE) values ('key1','https://somewhere.com/index.html?param1=value1¶m2=value2¶m3=value3');
When I run this statement, again in SQLDeveloper, it prompts me to enter values for param2 and param3, as if the & is a signal for interaction. Is there a way to turn this off?
I think you need the following at the start of your script:
I’ve seen references to
SET SCAN OFFas well, but turning offDEFINEhas always worked for me.