Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: Complete Keyword List
Immo Landwerth wrote:
> Hi there,
>
> I'm building up a complete SQL and PL/SQL Parser for Oracle. While devloping
> I found out that the "reserved words" listed in Oracle's 8i Documentation
> are *not* complete (e.g. REPLACE, CASE, CAST, MULTISET, SOME, XOR are
> missing).
>
> Does anyone know a Web Page or Documentation in which I can find a complete
> list?
>
> Also I would like to know the context in which it is considered to be a
> keyword. For example IMMEDIATE is a valid PL/SQL parameter name but after
> EXECUTE it is a keyword.
>
> Immo
>
>
You could start your list by typing the following in sqlplus:
select * from v$reserved_words;
Doesn't tell you the context, however. Received on Tue Nov 19 2002 - 15:19:37 CST
![]() |
![]() |