Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: Selecting from a column hich has a restricted heading
>| I need to execute the following simple select statement:
>|
>| select size from v$type_size
>|
>| But because SIZE is a SQL reserved word it will not allow me to do so,
Where are you gettin size from anyway
SQL> desc v$type_size
Name Null? Type ------------------------------- -------- ---- COMPONENT VARCHAR2(8) TYPE VARCHAR2(8) DESCRIPTION VARCHAR2(32) TYPE_SIZE NUMBER
So it's SELECT type_size fro v$type_size
John
Tel: (702) 498 4990
Fax: (702) 871 4318
e-mail: jomarlen_at_aol.com
Web Site: http://members.aol.com/jomarlen/
The views expressed in this message
are those of the author and not
necessarily those of U.P. Inc.
and/or its employees.
![]() |
![]() |