Search notes:

Oracle: V$RESERVED_WORDS

v$reserved_words stores a list of words that are reserved keywords in Oracle.
select
  lower(keyword) keyword,
  reserved,
  res_type,
  res_attr,
  res_semi,
  duplicate
from
  v$reserved_words order by keyword;
Github repository oracle-patterns, path: /Installed/dynamic-performance-views/reserved_words/keywords.sql

Error messages related to using reserved words

Using a reserved word as column alias results in an ORA-00923: FROM keyword not found where expected error.
Using a reserved word as column name results in an ORA-01747: invalid user.table.column, table.column, or column specification error.
Selecting a column whose name is a semi reserved keyword results in an ORA-00936: missing expression error.

See also

The error messages
v$sqlfn_metadata maintains a list of SQL operators and SQL functions.
Oracle Dynamic Performance Views

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...', 1759421587, '216.73.216.42', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/databases/Oracle/installed/dynamic-performance-views/reserved_words/index(68): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78