Return-Path: <ml-errors@fatcity.com>
Received: from ensim.rackshack.net (root@localhost)
 by orafaq.net (8.11.6/8.11.6) with ESMTP id h8PH0HF11932
 for <oracle-l@orafaq.net>; Thu, 25 Sep 2003 12:00:17 -0500
X-ClientAddr: 66.27.56.213
Received: from www2.fatcity.com (rrcs-west-66-27-56-213.biz.rr.com [66.27.56.213])
 by ensim.rackshack.net (8.11.6/8.11.6) with ESMTP id h8PH0Hc11927
 for <oracle-l@orafaq.net>; Thu, 25 Sep 2003 12:00:17 -0500
Received: (from root@localhost)
 by www2.fatcity.com (8.11.6/8.11.6) id h8PELYq28679
 for oracle-l@orafaq.net; Thu, 25 Sep 2003 07:21:34 -0700
Received: by fatcity.com (05-Jun-2003/v1.0g-b73/bab) via fatcity.com id 005D10C9; Thu, 25 Sep 2003 07:19:40 -0800
Message-ID: <F001.005D10C9.20030925071940@fatcity.com>
Date: Thu, 25 Sep 2003 07:19:40 -0800
To: Multiple recipients of list ORACLE-L <ORACLE-L@fatcity.com>
X-Comment: Oracle RDBMS Community Forum
X-Sender: "Jamadagni, Rajendra" <Rajendra.Jamadagni@espn.com>
Sender: ml-errors@fatcity.com
Reply-To: ORACLE-L@fatcity.com
Errors-To: ML-ERRORS@fatcity.com
From: "Jamadagni, Rajendra" <Rajendra.Jamadagni@espn.com>
Subject: RE: Oracle Compress Option
Organization: Fat City Network Services, San Diego, California
X-ListServer: v1.0g, build 73; ListGuru (c) 1996-2003 Bruce A. Bergman
Precedence: bulk
Mime-Version: 1.0
Content-Type: multipart/mixed;	boundary="----=_NextPartTM-000-43077f39-3893-48b0-8b4b-f90596aa1c96"
------=_NextPartTM-000-43077f39-3893-48b0-8b4b-f90596aa1c96
Content-Type: multipart/alternative;
 boundary="----_=_NextPart_001_01C3836F.B8930550"
------_=_NextPart_001_01C3836F.B8930550
Content-Type: text/plain;
 charset="iso-8859-1"

we have 2 gbit private interconnects of which only one is used at any given
time. Everyone else talks to the dbs using public network. Both are
active/active. On one instance luckily we have application partitioning one
side manages the feeds that come from every foot/bast/basketball, hockey and
scores of other games and processes them and sends it out to customers.
Another side takes this data plus people sitting to make corrections if any
before it is fed to video generators and goes on espn network broadcast. So
it works fine.
 
Other instances are legacy ... the active/active is more like a HA
configuration, lots of people connected on either side all the time lots of
DML activity going around all the time. We see more of a GC traffic ... but
we are experimenting with _fairness_threshold parameter to see if that will
help. As for performance issues, we encounter lots of BBW but unfortunately
that is due to business logic and can't be easily changed.
 
Otherwise we do fine.
Raj
----------------------------------------------------------------------------
---- 
Rajendra dot Jamadagni at nospamespn dot com 
All Views expressed in this email are strictly personal. 
QOTD: Any clod can have facts, having an opinion is an art ! 

-----Original Message-----
Sent: Thursday, September 25, 2003 10:35 AM
To: Multiple recipients of list ORACLE-L


Hm, interesting...
 
How does your active-active config work, do you have write activity on all
nodes?
I'd be interested in any performance issues you had or currently have...
Have you partitioned your application or data usage somehow?
What kind of interconnect you're using?
 
Tanel.

----- Original Message ----- 
To: Multiple recipients of list ORACLE-L <mailto:ORACLE-L@fatcity.com>  
Sent: Thursday, September 25, 2003 4:49 PM

Waleed, I get your point ... 
 
We have 6 RAC instances that run active-active ... and compared to
availability requirements, we (incl management) decided that disk is cheap.
 
I guess it is relative ...
 
Raj
----------------------------------------------------------------------------
---- 
Rajendra dot Jamadagni at nospamespn dot com 
All Views expressed in this email are strictly personal. 
QOTD: Any clod can have facts, having an opinion is an art ! 

-----Original Message-----
Sent: Thursday, September 25, 2003 9:35 AM
To: Multiple recipients of list ORACLE-L


Disk is not cheap if you pay for high availability configuration. I compress
historical data on daily basis and was able to save 70 percent of the disk
space. Imagine the amount of savings for five TB.
 
Two major issues:
 
1) Oracle says updates will be slow on compressed tables, but I say don't
even try to update a compressed table, uncompress first otherwise you will
end up with a segment that is not good at all for scattered reads.
 
2) You can not add columns to the table when it's compressed, so if you
compressed a big table and need a new column you need to recreate the table
without compression. So adding many extra columns before compression is a
good idea.
 
It's mainly good for data warehouses applications.
 
Regards,
 
Waleed
 

-----Original Message-----
Sent: Thursday, September 25, 2003 9:05 AM
To: Multiple recipients of list ORACLE-L



I think 9202 doesn't like to export compressed tables in direct mode ... so
watch out for that ... I implemented, tested and next day reverted back to
regular tables due to this export issue. Disk is cheap.

A BAARF party member wannabe !! 
Raj 
----------------------------------------------------------------------------
---- 
Rajendra dot Jamadagni at nospamespn dot com 
All Views expressed in this email are strictly personal. 
QOTD: Any clod can have facts, having an opinion is an art ! 


-----Original Message----- 
Sent: Wednesday, September 24, 2003 10:05 PM 
To: Multiple recipients of list ORACLE-L 


"Compress to impress?" by Julian Dyke is a good presentation on this 
topic (see for instance http://www.ukoug.org/calendar/jan03/jan30ab.htm
<http://www.ukoug.org/calendar/jan03/jan30ab.htm> ). 

I do have the article - 202 K with no compression, 147 K with 
compression :). 

Let me know if you're interested, and I'll email it directly to you. 

Mogens 

Avnish.Rastogi@providence.org wrote: 

>Does anybody has any experience with Oracle 9I compression option. I did
some test on 9202 with a table of more 14 million rows. Table has total 7
indexes. Surprising both table and indexes are using more space after
compression. Before compression space used is 13064MB and after compression
13184MB. In both the cases I did export from source table and stored in two
different tablespaces. Any insight on that and any disadvantages of using
that.

> 
>Thanks 


------_=_NextPart_001_01C3836F.B8930550
Content-Type: text/html;
 charset="iso-8859-1"

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<TITLE>RE: Oracle Compress Option</TITLE>

<META content="MSHTML 5.50.4930.1700" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#e0e0e0>
<DIV><SPAN class=263020814-25092003><FONT face="Courier New" color=#0000ff 
size=2>we have 2 gbit private interconnects of which only one is used at any 
given time. Everyone else talks to the dbs using public network. Both are 
active/active. On one instance luckily we have application partitioning one side 
manages the feeds that come from every foot/bast/basketball, hockey and scores 
of other games and processes them and sends it out to customers. Another side 
takes this data plus people sitting to make corrections if any before it is fed 
to video generators and goes on espn network broadcast. So it works 
fine.</FONT></SPAN></DIV>
<DIV><SPAN class=263020814-25092003><FONT face="Courier New" color=#0000ff 
size=2></FONT></SPAN>&nbsp;</DIV>
<DIV><SPAN class=263020814-25092003><FONT face="Courier New" color=#0000ff 
size=2>Other instances are legacy ... the active/active is more like a HA 
configuration, lots of people connected on either side all the time lots of DML 
activity going around all the time. We see more of a GC traffic ... but we are 
experimenting with _fairness_threshold parameter to see if that will help. As 
for performance issues, we encounter lots of BBW but unfortunately that is due 
to business logic and can't be easily changed.</FONT></SPAN></DIV>
<DIV><SPAN class=263020814-25092003><FONT face="Courier New" color=#0000ff 
size=2></FONT></SPAN>&nbsp;</DIV>
<DIV><SPAN class=263020814-25092003><FONT face="Courier New" color=#0000ff 
size=2>Otherwise we do fine.</FONT></SPAN></DIV>
<DIV><SPAN class=263020814-25092003><FONT face="Courier New" color=#0000ff 
size=2>Raj</FONT></SPAN></DIV>
<DIV><SPAN class=263020814-25092003></SPAN><FONT face="Courier New" 
size=2>--------------------------------------------------------------------------------</FONT> 
<BR><FONT face="Courier New" size=2>Rajendra dot Jamadagni at nospamespn dot 
com</FONT> <BR><FONT face="Courier New" size=2>All Views expressed in this email 
are strictly personal.</FONT> <BR><FONT face="Courier New" size=2>QOTD: Any clod 
can have facts, having an opinion is an art !</FONT> </DIV>
<BLOCKQUOTE dir=ltr style="MARGIN-RIGHT: 0px">
  <DIV class=OutlookMessageHeader dir=ltr align=left><FONT face=Tahoma 
  size=2>-----Original Message-----<BR><B>From:</B> Tanel Poder 
  [mailto:tanel.poder.003@mail.ee]<BR><B>Sent:</B> Thursday, September 25, 2003 
  10:35 AM<BR><B>To:</B> Multiple recipients of list ORACLE-L<BR><B>Subject:</B> 
  Re: Oracle Compress Option<BR><BR></FONT></DIV>
  <DIV><FONT face=Arial size=2>Hm, interesting...</FONT></DIV>
  <DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
  <DIV><FONT face=Arial size=2>How does your active-active config work, do you 
  have write activity on all nodes?</FONT></DIV>
  <DIV><FONT face=Arial size=2>I'd be interested in any performance issues you 
  had or currently have...</FONT></DIV>
  <DIV><FONT face=Arial size=2>Have you partitioned your application or data 
  usage somehow?</FONT></DIV>
  <DIV><FONT face=Arial size=2>What kind of interconnect you're 
  using?</FONT></DIV>
  <DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
  <DIV><FONT face=Arial size=2>Tanel.</FONT></DIV>
  <BLOCKQUOTE dir=ltr 
  style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
    <DIV style="FONT: 10pt arial">----- Original Message ----- </DIV>
    <DIV 
    style="BACKGROUND: #e4e4e4; FONT: 10pt arial; font-color: black"><B>From:</B> 
    <A title=Rajendra.Jamadagni@ESPN.COM 
    href="mailto:Rajendra.Jamadagni@ESPN.COM">Jamadagni, Rajendra</A> </DIV>
    <DIV style="FONT: 10pt arial"><B>To:</B> <A title=ORACLE-L@fatcity.com 
    href="mailto:ORACLE-L@fatcity.com">Multiple recipients of list ORACLE-L</A> 
    </DIV>
    <DIV style="FONT: 10pt arial"><B>Sent:</B> Thursday, September 25, 2003 4:49 
    PM</DIV>
    <DIV style="FONT: 10pt arial"><B>Subject:</B> RE: Oracle Compress 
    Option</DIV>
    <DIV><BR></DIV>
    <DIV><SPAN class=665294412-25092003><FONT face="Courier New" color=#0000ff 
    size=2>Waleed, I get your point ... </FONT></SPAN></DIV>
    <DIV><SPAN class=665294412-25092003><FONT face="Courier New" color=#0000ff 
    size=2></FONT></SPAN>&nbsp;</DIV>
    <DIV><SPAN class=665294412-25092003><FONT face="Courier New" color=#0000ff 
    size=2>We have 6 RAC instances that run active-active ... and compared to 
    availability requirements, we (incl management) decided that disk is 
    cheap.</FONT></SPAN></DIV>
    <DIV><SPAN class=665294412-25092003><FONT face="Courier New" color=#0000ff 
    size=2></FONT></SPAN>&nbsp;</DIV>
    <DIV><SPAN class=665294412-25092003><FONT face="Courier New" color=#0000ff 
    size=2>I guess it is relative ...</FONT></SPAN></DIV>
    <DIV><SPAN class=665294412-25092003><FONT face="Courier New" color=#0000ff 
    size=2></FONT></SPAN>&nbsp;</DIV>
    <DIV><SPAN class=665294412-25092003><FONT face="Courier New" color=#0000ff 
    size=2>Raj</FONT></SPAN></DIV>
    <DIV><SPAN class=665294412-25092003></SPAN><FONT face="Courier New" 
    size=2>--------------------------------------------------------------------------------</FONT> 
    <BR><FONT face="Courier New" size=2>Rajendra dot Jamadagni at nospamespn dot 
    com</FONT> <BR><FONT face="Courier New" size=2>All Views expressed in this 
    email are strictly personal.</FONT> <BR><FONT face="Courier New" 
    size=2>QOTD: Any clod can have facts, having an opinion is an art !</FONT> 
    </DIV>
    <BLOCKQUOTE dir=ltr style="MARGIN-RIGHT: 0px">
      <DIV class=OutlookMessageHeader dir=ltr align=left><FONT face=Tahoma 
      size=2>-----Original Message-----<BR><B>From:</B> Khedr, Waleed 
      [mailto:Waleed.Khedr@FMR.COM]<BR><B>Sent:</B> Thursday, September 25, 2003 
      9:35 AM<BR><B>To:</B> Multiple recipients of list 
      ORACLE-L<BR><B>Subject:</B> RE: Oracle Compress 
Option<BR><BR></FONT></DIV>
      <DIV><SPAN class=283022512-25092003><FONT color=#0000ff size=2>Disk is not 
      cheap if you pay for high availability configuration. I compress 
      historical data on daily basis and was able to save 70 percent of the disk 
      space. Imagine the amount of savings for five TB.</FONT></SPAN></DIV>
      <DIV><SPAN class=283022512-25092003><FONT color=#0000ff 
      size=2></FONT></SPAN>&nbsp;</DIV>
      <DIV><SPAN class=283022512-25092003><FONT color=#0000ff size=2>Two major 
      issues:</FONT></SPAN></DIV>
      <DIV><SPAN class=283022512-25092003><FONT color=#0000ff 
      size=2></FONT></SPAN>&nbsp;</DIV>
      <DIV><SPAN class=283022512-25092003><FONT color=#0000ff size=2>1) Oracle 
      says updates will be slow on compressed tables, but I say don't even try 
      to update a compressed table, uncompress first otherwise you will end up 
      with a segment that is not good at all for scattered 
      reads.</FONT></SPAN></DIV>
      <DIV><SPAN class=283022512-25092003><FONT color=#0000ff 
      size=2></FONT></SPAN>&nbsp;</DIV>
      <DIV><SPAN class=283022512-25092003><FONT color=#0000ff size=2>2) You can 
      not add columns to the table when it's compressed, so if you compressed a 
      big table and need a new column you need to recreate the table without 
      compression. So adding many extra columns before compression is a good 
      idea.</FONT></SPAN></DIV>
      <DIV><SPAN class=283022512-25092003><FONT color=#0000ff 
      size=2></FONT></SPAN>&nbsp;</DIV>
      <DIV><SPAN class=283022512-25092003><FONT color=#0000ff size=2>It's mainly 
      good for data warehouses applications.</FONT></SPAN></DIV>
      <DIV><SPAN class=283022512-25092003><FONT color=#0000ff 
      size=2></FONT></SPAN>&nbsp;</DIV>
      <DIV><SPAN class=283022512-25092003><FONT color=#0000ff 
      size=2>Regards,</FONT></SPAN></DIV>
      <DIV><SPAN class=283022512-25092003><FONT color=#0000ff 
      size=2></FONT></SPAN>&nbsp;</DIV>
      <DIV><SPAN class=283022512-25092003><FONT color=#0000ff 
      size=2>Waleed</FONT></SPAN></DIV>
      <DIV><SPAN class=283022512-25092003><FONT color=#0000ff 
      size=2></FONT></SPAN>&nbsp;</DIV>
      <BLOCKQUOTE dir=ltr style="MARGIN-RIGHT: 0px">
        <DIV class=OutlookMessageHeader dir=ltr align=left><FONT face=Tahoma 
        size=2>-----Original Message-----<BR><B>From:</B> Jamadagni, Rajendra 
        [mailto:Rajendra.Jamadagni@espn.com]<BR><B>Sent:</B> Thursday, September 
        25, 2003 9:05 AM<BR><B>To:</B> Multiple recipients of list 
        ORACLE-L<BR><B>Subject:</B> RE: Oracle Compress 
        Option<BR><BR></FONT></DIV>
        <P><FONT size=2>I think 9202 doesn't like to export compressed tables in 
        direct mode ... so watch out for that ... I implemented, tested and next 
        day reverted back to regular tables due to this export issue. Disk is 
        cheap.</FONT></P>
        <P><FONT size=2>A BAARF party member wannabe !!</FONT> <BR><FONT 
        size=2>Raj</FONT> <BR><FONT 
        size=2>--------------------------------------------------------------------------------</FONT> 
        <BR><FONT size=2>Rajendra dot Jamadagni at nospamespn dot com</FONT> 
        <BR><FONT size=2>All Views expressed in this email are strictly 
        personal.</FONT> <BR><FONT size=2>QOTD: Any clod can have facts, having 
        an opinion is an art !</FONT> </P><BR>
        <P><FONT size=2>-----Original Message-----</FONT> <BR><FONT size=2>From: 
        Mogens Nørgaard [<A 
        href="mailto:mln@miracleas.dk">mailto:mln@miracleas.dk</A>]</FONT> 
        <BR><FONT size=2>Sent: Wednesday, September 24, 2003 10:05 PM</FONT> 
        <BR><FONT size=2>To: Multiple recipients of list ORACLE-L</FONT> 
        <BR><FONT size=2>Subject: Re: Oracle Compress Option</FONT> </P><BR>
        <P><FONT size=2>"Compress to impress?" by Julian Dyke is a good 
        presentation on this </FONT><BR><FONT size=2>topic (see for instance <A 
        target=_blank 
        href="http://www.ukoug.org/calendar/jan03/jan30ab.htm">http://www.ukoug.org/calendar/jan03/jan30ab.htm</A>).</FONT> 
        </P>
        <P><FONT size=2>I do have the article - 202 K with no compression, 147 K 
        with </FONT><BR><FONT size=2>compression :).</FONT> </P>
        <P><FONT size=2>Let me know if you're interested, and I'll email it 
        directly to you.</FONT> </P>
        <P><FONT size=2>Mogens</FONT> </P>
        <P><FONT size=2>Avnish.Rastogi@providence.org wrote:</FONT> </P>
        <P><FONT size=2>&gt;Does anybody has any experience with Oracle 9I 
        compression option. I did some test on 9202 with a table of more 14 
        million rows. Table has total 7 indexes. Surprising both table and 
        indexes are using more space after compression. Before compression space 
        used is 13064MB and after compression 13184MB. In both the cases I did 
        export from source table and stored in two different tablespaces. Any 
        insight on that and any disadvantages of using that.</FONT></P>
        <P><FONT size=2>&gt;</FONT> <BR><FONT size=2>&gt;Thanks</FONT> 
      </P></BLOCKQUOTE></BLOCKQUOTE></BLOCKQUOTE></BLOCKQUOTE></BODY></HTML>

------_=_NextPart_001_01C3836F.B8930550--


------=_NextPartTM-000-43077f39-3893-48b0-8b4b-f90596aa1c96
Content-Type: text/plain;
 name="ESPN_Disclaimer.txt"
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment;
 filename="ESPN_Disclaimer.txt"

********************************************************************This e-mail message is confidential, intended only for the named recipient(s) above and may contain information that is privileged, attorney work product or exempt from disclosure under applicable law. If you have received this message in error, or are not the named recipient(s), please immediately notify corporate MIS at (860) 766-2000 and delete this e-mail message from your computer, Thank you.*********************************************************************2

------=_NextPartTM-000-43077f39-3893-48b0-8b4b-f90596aa1c96--

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Jamadagni, Rajendra
  INET: Rajendra.Jamadagni@espn.com

Fat City Network Services    -- 858-538-5051 http://www.fatcity.com
San Diego, California        -- Mailing list and web hosting services
---------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message
to: ListGuru@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).

