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

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

Index