I have a SQL script that creates a package with a comment containing an ampersand (&). When I run the script from SQL Plus, I am prompted to enter a substitute value for the string starting with &. How do I disable this feature so that SQL Plus ignores the ampersand?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
This may work for you:
Otherwise the ampersand needs to be at the end of a string,
EDIT: I was click-happy when saving... This was referenced from a blog. |
|||||
|
|
If you sometimes use substitution variables you might not want to turn define off. In these cases you could convert the ampersand from its numeric equivalent as in |
|||||
|
|
I resolved with the code below:
and put a \ beside & in the left Att |
|||
|
|
|
According to this nice FAQ there are a couple solutions. You might also be able to escape the ampersand with the backslash character "\" if you can modify the comment. |
||||
|
|