Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: SQL+ need help (low priority)
Sinardy,
assuming that this has been done in SQL*Plus, it looks like you have a column called value defined as being character.
If you type
column value
you will probably get output something like...
COLUMN value ON
FORMAT a20
to change this you would either have to say
col value form 999999999
or
col value cle
or
select name,
value size
from v_$sga;
All of these will solve the problem
> Hi all,
>
> When I do
>
> Select * from v_$sga;
>
> NAME VALUE
> --------------------------- -----------
> Fixed Size ###########
> Variable Size ###########
> Database Buffers ###########
> Redo Buffers ###########
>
>
>
>
> Select name, value + 0 from v_$sga;
>
> NAME VALUE
> --------------------------- -----------
> Fixed Size 69616
> Variable Size 16089088
> Database Buffers 38010880
> Redo Buffers 180224
>
>
> Do you know what happen with the ####
>
>
>
> Thank You
>
> Sinardy
>
> --
> Please see the official ORACLE-L FAQ: http://www.orafaq.com
> --
> Author: Sinardy
> INET: sinardyxing_at_bcsis.com
>
> Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051
> San Diego, California -- Public Internet access / Mailing Lists
> --------------------------------------------------------------------
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from). You may
> also send the HELP command for other information (like subscribing).
>
-- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Stuart Graham INET: sgraham_at_intertrain.net Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists -------------------------------------------------------------------- To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).Received on Thu Aug 23 2001 - 05:53:08 CDT
![]() |
![]() |