Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> Re: SQL+ need help (low priority)

Re: SQL+ need help (low priority)

From: Stuart Graham <sgraham_at_intertrain.net>
Date: Thu, 23 Aug 2001 03:53:08 -0700
Message-ID: <F001.00374CA8.20010823035056@fatcity.com>

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

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US