Search notes:

SQL*Plus: SET ESCAPE

set escape can be used to define an escape character with which the special treatment of the ampersand in substitution variables can be prevented.
SQL> set verify off
SQL> define val=xyz

SQL> select '&val' v from dual;
V
---
xyz

SQL> select '\&val' v from dual;
V
----
\xyz

SQL> set escape \
SQL> select '\&val' v from dual;
V
----
&val

See also

set
set define off
SQL*Plus

Index

Fatal error: Uncaught PDOException: SQLSTATE[HY000]: General error: 8 attempt to write a readonly database in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php:78 Stack trace: #0 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(78): PDOStatement->execute(Array) #1 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(30): insert_webrequest_('/notes/developm...', 1741097111, '3.135.221.122', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/databases/Oracle/SQL-Plus/set/escape(60): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78