Why is SET DEFINE OFF not working for the colon (:) character?
问题 I have a script I'm trying to run via sqlplus. At the top of the script, I have "SET DEFINE OFF" set. However, when I run it, I'm receiving this error: SP2-0552: Bind variable "CHANDAWALA" not declared. I believe this is happening because I have a couple update statements that include colons within a string like this: UPDATE ADDRESS SET ADDRESS_STREET_LINE1 = 'Moh: Chandawala'... UPDATE ADDRESS SET ADDRESS_STREET_LINE1 = 'Moh:chandawala'... So it's treating them like bind variables. I was