<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<rss version="2.0">
  <channel>
  <title>comp.databases.oracle.server Google Group</title>
  <link>http://groups.google.com.ag/group/comp.databases.oracle.server</link>
  <description>Oracle database administration/server topics.</description>
  <language>en</language>
  <item>
  <title>Re: Why is this query slow?</title>
  <link>http://groups.google.com.ag/group/comp.databases.oracle.server/browse_thread/thread/ccd1d5f7d26590ec/4f383282616b5130?show_docid=4f383282616b5130</link>
  <description>
  On Mar 12, 5:34 am, vsevolod afanassiev &lt;br&gt; The 10% rule is not suitable in all cases. Last year I posted to this &lt;br&gt; group a test case that showed a full table scan was faster when &lt;br&gt; selecting 0.06% of the rows in a 100,000,000 row table than was an &lt;br&gt; index access when the index had a high clustering factor. However,
  </description>
  <guid isPermaLink="true">http://groups.google.com.ag/group/comp.databases.oracle.server/browse_thread/thread/ccd1d5f7d26590ec/4f383282616b5130?show_docid=4f383282616b5130</guid>
  <author>
  hooperc2...@yahoo.com
  (Charles Hooper)
  </author>
  <pubDate>Fri, 12 Mar 2010 13:46:23 UT
</pubDate>
  </item>
  <item>
  <title>Re: Why is this query slow?</title>
  <link>http://groups.google.com.ag/group/comp.databases.oracle.server/browse_thread/thread/ccd1d5f7d26590ec/525c1688ff67a4fc?show_docid=525c1688ff67a4fc</link>
  <description>
  On Mar 12, 5:34 am, vsevolod afanassiev &lt;br&gt; How does this rewrite perform: &lt;br&gt; with tlimit as ( &lt;br&gt; select ID &lt;br&gt; from transaction &lt;br&gt; where tx_date between (date3 and date4) &lt;br&gt; and status = &#39;AAA&#39; &lt;br&gt; ) &lt;br&gt; select * from transactions &lt;br&gt; where tx_date between (date1 and date2) and &lt;br&gt; status = &#39;AAA&#39; and &lt;br&gt; ID not in &lt;br&gt; (select ID from tlimit);
  </description>
  <guid isPermaLink="true">http://groups.google.com.ag/group/comp.databases.oracle.server/browse_thread/thread/ccd1d5f7d26590ec/525c1688ff67a4fc?show_docid=525c1688ff67a4fc</guid>
  <author>
  orat...@msn.com
  (ddf)
  </author>
  <pubDate>Fri, 12 Mar 2010 13:46:14 UT
</pubDate>
  </item>
  <item>
  <title>Re: New Procedurs With Version# In Name</title>
  <link>http://groups.google.com.ag/group/comp.databases.oracle.server/browse_thread/thread/5ec3a7351205635e/55b931b258cc270e?show_docid=55b931b258cc270e</link>
  <description>
  In a previous life I was in a situation where something similar had &lt;br&gt; been done. &lt;br&gt; There were 2 ids for each application. The ids had private synonyms to &lt;br&gt; a version of the &lt;br&gt; stored procs. &lt;br&gt; When functionality of the procedure was changing a new version went &lt;br&gt; through all the test cycles etc and was put in with a new version
  </description>
  <guid isPermaLink="true">http://groups.google.com.ag/group/comp.databases.oracle.server/browse_thread/thread/5ec3a7351205635e/55b931b258cc270e?show_docid=55b931b258cc270e</guid>
  <author>
  zifnab...@gmail.com
  (scottgamble@comcast.net)
  </author>
  <pubDate>Fri, 12 Mar 2010 13:01:18 UT
</pubDate>
  </item>
  <item>
  <title>Re: Multiple selects in one</title>
  <link>http://groups.google.com.ag/group/comp.databases.oracle.server/browse_thread/thread/78cdae8d454f56b2/3d47029a84868f2c?show_docid=3d47029a84868f2c</link>
  <description>
  I think what you&#39;re looking for is commonly called a PIVOT operation &lt;br&gt; that turns rows into columns. Oracle 11g introduced the PIVOT &lt;br&gt; operator, but it can be done with pre-11g versions as well by using a &lt;br&gt; GROUP BY with a bit cumbersome aggregate function expression. &lt;br&gt; Something like this should give you a starting point:
  </description>
  <guid isPermaLink="true">http://groups.google.com.ag/group/comp.databases.oracle.server/browse_thread/thread/78cdae8d454f56b2/3d47029a84868f2c?show_docid=3d47029a84868f2c</guid>
  <author>
  mah...@web.de
  (Randolf Geist)
  </author>
  <pubDate>Fri, 12 Mar 2010 12:19:42 UT
</pubDate>
  </item>
  <item>
  <title>Re: New Procedurs With Version# In Name</title>
  <link>http://groups.google.com.ag/group/comp.databases.oracle.server/browse_thread/thread/5ec3a7351205635e/e06b2adf4c69ec0a?show_docid=e06b2adf4c69ec0a</link>
  <description>
  In article &amp;lt;pan.2010.03.11.16.16...@email .here.invalid&amp;gt;, &lt;br&gt; n...@email.here.invalid says... &lt;br&gt; What *is* the recommended method? I would probably do &lt;br&gt; &amp;quot;select count(pk_id_column)...&amp;quot;
  </description>
  <guid isPermaLink="true">http://groups.google.com.ag/group/comp.databases.oracle.server/browse_thread/thread/5ec3a7351205635e/e06b2adf4c69ec0a?show_docid=e06b2adf4c69ec0a</guid>
  <author>
  jeremy0...@gmail.com
  (Jeremy)
  </author>
  <pubDate>Fri, 12 Mar 2010 12:17:54 UT
</pubDate>
  </item>
  <item>
  <title>Why is this query slow?</title>
  <link>http://groups.google.com.ag/group/comp.databases.oracle.server/browse_thread/thread/ccd1d5f7d26590ec/60059334bc30aaa6?show_docid=60059334bc30aaa6</link>
  <description>
  I have been doing SQL query tuning for a while and in most cases this &lt;br&gt; is relatively straightforward excercise. For example: if a query &lt;br&gt; selects only a few rows from large table then it should be accessed &lt;br&gt; through index, if a query selects more than 10% of the rows the table &lt;br&gt; should be accessed through full table scan. In many cases I was able
  </description>
  <guid isPermaLink="true">http://groups.google.com.ag/group/comp.databases.oracle.server/browse_thread/thread/ccd1d5f7d26590ec/60059334bc30aaa6?show_docid=60059334bc30aaa6</guid>
  <author>
  vsevolod.afanass...@gmail.com
  (vsevolod afanassiev)
  </author>
  <pubDate>Fri, 12 Mar 2010 10:34:02 UT
</pubDate>
  </item>
  <item>
  <title>Re: New Procedurs With Version# In Name</title>
  <link>http://groups.google.com.ag/group/comp.databases.oracle.server/browse_thread/thread/5ec3a7351205635e/f3a6458a106ee03e?show_docid=f3a6458a106ee03e</link>
  <description>
  Op 11-3-2010 6:17, Mladen Gogala schreef: &lt;br&gt; And I thought SourceSafe was a versioning system.... &lt;br&gt; Versioning systems won&#39;t help if both versions of the procedure must be &lt;br&gt; kept in the software, indeed because other programs may need the old &lt;br&gt; version when they can not handle changes made to the original procedure.
  </description>
  <guid isPermaLink="true">http://groups.google.com.ag/group/comp.databases.oracle.server/browse_thread/thread/5ec3a7351205635e/f3a6458a106ee03e?show_docid=f3a6458a106ee03e</guid>
  <author>
  what...@xs4all.nl
  (Shakespeare)
  </author>
  <pubDate>Fri, 12 Mar 2010 09:12:53 UT
</pubDate>
  </item>
  <item>
  <title>Re: Multiple selects in one</title>
  <link>http://groups.google.com.ag/group/comp.databases.oracle.server/browse_thread/thread/78cdae8d454f56b2/823419ceba09f923?show_docid=823419ceba09f923</link>
  <description>
  Op 11-3-2010 17:49, The Magnet schreef: &lt;br&gt; Man, I sure hope I never have to do any maintenance on code like this.... &lt;br&gt; Shakespeare
  </description>
  <guid isPermaLink="true">http://groups.google.com.ag/group/comp.databases.oracle.server/browse_thread/thread/78cdae8d454f56b2/823419ceba09f923?show_docid=823419ceba09f923</guid>
  <author>
  what...@xs4all.nl
  (Shakespeare)
  </author>
  <pubDate>Fri, 12 Mar 2010 08:11:52 UT
</pubDate>
  </item>
  <item>
  <title>Re: Cannot change ARCHIVELOG-MODE via EM</title>
  <link>http://groups.google.com.ag/group/comp.databases.oracle.server/browse_thread/thread/142320f3168bc16c/5dd62ad2226170e3?show_docid=5dd62ad2226170e3</link>
  <description>
  Op 11-3-2010 12:07, gazzag schreef: &lt;br&gt; Well, I&#39;m back. I was wrong. Sorry! Strange enough, I do not recall ever &lt;br&gt; have used the &amp;quot; with Windows. I&#39;m getting old.... &lt;br&gt; Shakespeare
  </description>
  <guid isPermaLink="true">http://groups.google.com.ag/group/comp.databases.oracle.server/browse_thread/thread/142320f3168bc16c/5dd62ad2226170e3?show_docid=5dd62ad2226170e3</guid>
  <author>
  what...@xs4all.nl
  (Shakespeare)
  </author>
  <pubDate>Fri, 12 Mar 2010 08:03:03 UT
</pubDate>
  </item>
  <item>
  <title>Re: New Procedurs With Version# In Name</title>
  <link>http://groups.google.com.ag/group/comp.databases.oracle.server/browse_thread/thread/5ec3a7351205635e/5f190fd3d30cccda?show_docid=5f190fd3d30cccda</link>
  <description>
  If you do this then you need to treat your codebase just as though you &lt;br&gt; have multiple versions of an application in production at different &lt;br&gt; client sites. &lt;br&gt; You need a different schema for each &amp;quot;version&amp;quot; of your production copies &lt;br&gt; and each schema needs to own all of the code from the Source Control &lt;br&gt; which represents this version. You will need private synonyms from your
  </description>
  <guid isPermaLink="true">http://groups.google.com.ag/group/comp.databases.oracle.server/browse_thread/thread/5ec3a7351205635e/5f190fd3d30cccda?show_docid=5f190fd3d30cccda</guid>
  <author>
  galen_bo...@yahoo.com
  (Galen Boyer)
  </author>
  <pubDate>Fri, 12 Mar 2010 01:58:16 UT
</pubDate>
  </item>
  <item>
  <title>Re: New Procedurs With Version# In Name</title>
  <link>http://groups.google.com.ag/group/comp.databases.oracle.server/browse_thread/thread/5ec3a7351205635e/631e62e3eaa34572?show_docid=631e62e3eaa34572</link>
  <description>
  There probably is a PHB in his company.
  </description>
  <guid isPermaLink="true">http://groups.google.com.ag/group/comp.databases.oracle.server/browse_thread/thread/5ec3a7351205635e/631e62e3eaa34572?show_docid=631e62e3eaa34572</guid>
  <author>
  n...@email.here.invalid
  (Mladen Gogala)
  </author>
  <pubDate>Thu, 11 Mar 2010 18:41:16 UT
</pubDate>
  </item>
  <item>
  <title>Re: New Procedurs With Version# In Name</title>
  <link>http://groups.google.com.ag/group/comp.databases.oracle.server/browse_thread/thread/5ec3a7351205635e/17032e38cdb15865?show_docid=17032e38cdb15865</link>
  <description>
  On Mar 10, 9:07 pm, &amp;quot;jeffchi...@gmail.com&amp;quot; &amp;lt;jeffchi...@gmail.com&amp;gt; &lt;br&gt; wrote: &lt;br&gt; Even Oracle can&#39;t get this right. The first two off the top of my &lt;br&gt; head, statistics generation and job control. &lt;br&gt; It does make sense for major functionality changes, though Vladimir&#39;s &lt;br&gt; point about overloading is significant for more modern versions of
  </description>
  <guid isPermaLink="true">http://groups.google.com.ag/group/comp.databases.oracle.server/browse_thread/thread/5ec3a7351205635e/17032e38cdb15865?show_docid=17032e38cdb15865</guid>
  <author>
  joel-ga...@home.com
  (joel garry)
  </author>
  <pubDate>Thu, 11 Mar 2010 17:17:41 UT
</pubDate>
  </item>
  <item>
  <title>Re: Oracle 10g on Solaris 10 non-global zones with asynchronous I/O</title>
  <link>http://groups.google.com.ag/group/comp.databases.oracle.server/browse_thread/thread/7787308f2e255835/dc2588c5c1c06487?show_docid=dc2588c5c1c06487</link>
  <description>
  There are a bunch of MOS notes on solaris setall, including one about &lt;br&gt; a mandatory patch. It varies by Oracle version/patch level, which I &lt;br&gt; can&#39;t seem to find in your post. Start with How To Verify Whether &lt;br&gt; DIRECTIO is Being Used [ID 555601.1] &lt;br&gt; jg
  </description>
  <guid isPermaLink="true">http://groups.google.com.ag/group/comp.databases.oracle.server/browse_thread/thread/7787308f2e255835/dc2588c5c1c06487?show_docid=dc2588c5c1c06487</guid>
  <author>
  joel-ga...@home.com
  (joel garry)
  </author>
  <pubDate>Thu, 11 Mar 2010 16:49:25 UT
</pubDate>
  </item>
  <item>
  <title>Re: Multiple selects in one</title>
  <link>http://groups.google.com.ag/group/comp.databases.oracle.server/browse_thread/thread/78cdae8d454f56b2/81c26eb84e3862f5?show_docid=81c26eb84e3862f5</link>
  <description>
  Well, finally came up with this beast. It works, so, I&#39;ll go with it: &lt;br&gt; SELECT customer_id, non_ut_subscr_id, non_ut_product_id, &lt;br&gt; non_ut_status, ut_subscr_id, ut_product_id, ut_status &lt;br&gt; FROM (SELECT customer_id, subscription_id non_ut_subscr_id, produst_id &lt;br&gt; non_ut_product_id, status non_ut_status, &lt;br&gt; LEAD(subscription_id, 1, NULL) OVER (PARTITION BY
  </description>
  <guid isPermaLink="true">http://groups.google.com.ag/group/comp.databases.oracle.server/browse_thread/thread/78cdae8d454f56b2/81c26eb84e3862f5?show_docid=81c26eb84e3862f5</guid>
  <author>
  a...@unsu.com
  (The Magnet)
  </author>
  <pubDate>Thu, 11 Mar 2010 16:49:14 UT
</pubDate>
  </item>
  <item>
  <title>Re: New Procedurs With Version# In Name</title>
  <link>http://groups.google.com.ag/group/comp.databases.oracle.server/browse_thread/thread/5ec3a7351205635e/70df55f012a4c718?show_docid=70df55f012a4c718</link>
  <description>
  On Mar 11, 12:07 am, &amp;quot;jeffchi...@gmail.com&amp;quot; &amp;lt;jeffchi...@gmail.com&amp;gt; &lt;br&gt; wrote: &lt;br&gt; snip &lt;br&gt; Getting overruled by who exactly? &lt;br&gt; Is there any kind of change control team in your company?
  </description>
  <guid isPermaLink="true">http://groups.google.com.ag/group/comp.databases.oracle.server/browse_thread/thread/5ec3a7351205635e/70df55f012a4c718?show_docid=70df55f012a4c718</guid>
  <author>
  johnbhur...@sbcglobal.net
  (John Hurley)
  </author>
  <pubDate>Thu, 11 Mar 2010 16:44:33 UT
</pubDate>
  </item>
  </channel>
</rss>
