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: Sinardy <sinardyxing_at_bcsis.com>
Date: Thu, 23 Aug 2001 17:59:28 -0700
Message-ID: <F001.00376663.20010823181537@fatcity.com>

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

> 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).

-- 
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).
Received on Thu Aug 23 2001 - 19:59:28 CDT

Original text of this message

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