Hi all,

Thank you all, It's work now
I must clear it using
clear column

or exit from sqlplus
and run it again

Thanks

Sinardy

-----Original Message-----
Graham
Sent: Thursday, 23 August 2001 7:51 PM
To: Multiple recipients of list ORACLE-L


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

----- Original Message -----
To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]>
Sent: Thursday, August 23, 2001 12:21 PM


> 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: [EMAIL PROTECTED]
>
> 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: [EMAIL PROTECTED] (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: [EMAIL PROTECTED]

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: [EMAIL PROTECTED] (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: Sinardy
  INET: [EMAIL PROTECTED]

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: [EMAIL PROTECTED] (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).

Reply via email to