<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>Question Re: Low performance with wrong statistics in Technology Q&amp;A</title>
    <link>https://community.sap.com/t5/technology-q-a/low-performance-with-wrong-statistics/qaa-p/13838199#M4869042</link>
    <description>&lt;P&gt;These are the results:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://sqlanywhere-forum.sap.com/upfiles/Before_drop_statistics_without_orderby.pdf"&gt;Before drop statistics without order by clause&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://sqlanywhere-forum.sap.com/upfiles/Before_drop_statistics_with_orderby.pdf"&gt;Before drop statistics with order by clause&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://sqlanywhere-forum.sap.com/upfiles/After_drop_statistics_without_orderby.pdf"&gt;After drop statistics without order by clause&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://sqlanywhere-forum.sap.com/upfiles/After_drop_statistics_with_orderby.pdf"&gt;After drop statistics with order by clause&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;In my previous tests I was not running the command: &lt;CODE&gt;call sa_flush_cache()&lt;/CODE&gt; so the result was so diverse. I do not understand why the return of &lt;CODE&gt;select&lt;/CODE&gt; is so slow.&lt;/P&gt;</description>
    <pubDate>Wed, 10 Oct 2012 13:42:30 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2012-10-10T13:42:30Z</dc:date>
    <item>
      <title>Low performance with wrong statistics</title>
      <link>https://community.sap.com/t5/technology-q-a/low-performance-with-wrong-statistics/qaq-p/13838196</link>
      <description>&lt;P&gt;Statistics that are generated in the table syscolstat are really needed for the database?&lt;/P&gt;
&lt;P&gt;I'm having problems because of low performance statistics. I periodically drop statistics and improves performance significantly. Is there any possibility to not generate them?&lt;/P&gt;
&lt;P&gt;Thanks, Leonardo.&lt;/P&gt;</description>
      <pubDate>Fri, 05 Oct 2012 09:26:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/low-performance-with-wrong-statistics/qaq-p/13838196</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-10-05T09:26:38Z</dc:date>
    </item>
    <item>
      <title>Re: Low performance with wrong statistics</title>
      <link>https://community.sap.com/t5/technology-q-a/low-performance-with-wrong-statistics/qaa-p/13838200#M4869043</link>
      <description>&lt;P&gt;I too would like to know if this is possible.  I'm seeing the same issue after upgrading from version 9 to 12.  If I drop statistics from the PK on a 37 million row table, performance goes through the roof.  Response comes back in 2 seconds instead of 60+.&lt;/P&gt;</description>
      <pubDate>Fri, 05 Oct 2012 15:45:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/low-performance-with-wrong-statistics/qaa-p/13838200#M4869043</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-10-05T15:45:01Z</dc:date>
    </item>
    <item>
      <title>Re: Low performance with wrong statistics</title>
      <link>https://community.sap.com/t5/technology-q-a/low-performance-with-wrong-statistics/qaa-p/13838197#M4869040</link>
      <description>&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;STRONG&gt;Statistics that are generated in the table syscolstat are really needed for the database?&lt;/STRONG&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Yes, very much so. Collecting a statistical distribution of values helps provide the database optimizer a (rough) estimate of the amount of work it will need to perform to scan for &lt;A href="http://dcx.sybase.com/index.html#1201/en/dbusage/predicate-queryoptimization.html"&gt;sargable predicates&lt;/A&gt; in an index and also helps with &lt;A href="http://dcx.sybase.com/index.html#1201/en/dbusage/peropes.html"&gt;join strategy estimates&lt;/A&gt; inside the optimizer.&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;STRONG&gt;Is there any possibility to not generate them?&lt;/STRONG&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;You can use &lt;A href="http://dcx.sybase.com/index.html#1201/en/dbreference/alter-statistics-statement.html"&gt;ALTER STATISTICS&lt;/A&gt; to control the collection of statistics on particular columns/tables. Generally it is not recommended to turn this feature off.&lt;/P&gt;
&lt;P&gt;Statistics are &lt;A href="http://dcx.sybase.com/index.html#1201/en/dbusage/estimat.html"&gt;automatically maintained by the database engine&lt;/A&gt; as SELECT/INSERT/UPDATE/DELETE operations are executed. Generally, statistics can easily become 'incorrect' over time due to two major reasons:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;
&lt;P&gt;The 'buckets/bins/discrete ranges' picked for the &lt;A href="http://en.wikipedia.org/wiki/Histogram"&gt;histogram&lt;/A&gt; ranges no longer reflect a "balance" of values across the table. As a result of this "unbalanced" histogram range division, values are not as unique in each bucket (many or most values are stored in one or very few buckets), and the optimizer has to scan through more values found in the "full" bucket (resulting in &lt;A href="http://dcx.sybase.com/index.html#1201/en/dbusage/index-selectivity.html"&gt;low index selectivity&lt;/A&gt; in the optimizer plan).&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;The '&lt;A href="http://dcx.sybase.com/index.html#1201/en/dbusage/index-selectivity.html"&gt;selectivity&lt;/A&gt;' values stored in the ranges are incorrect (i.e. the number of values that really appear in the table does not reflect the percentage of values stored in the histogram bucket range).&lt;/P&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;For older versions of SQL Anywhere, the only way to correct this information is to manually issue the &lt;A href="http://dcx.sybase.com/index.html#1201/en/dbreference/create-statistics-statement.html"&gt;CREATE STATISTICS&lt;/A&gt; command when you know the information is incorrect. (Either slowly over time, or perhaps after large data operations).&lt;/P&gt;
&lt;P&gt;You can check what the current values are in the histogram data for your table by using the &lt;A href="http://dcx.sybase.com/index.html#1201/en/dbadmin/dbhist-histogram-dbutilities.html"&gt;dbhist utility&lt;/A&gt; or the &lt;A href="http://dcx.sybase.com/index.html#1201/en/dbreference/sa-get-histogram-system-procedure.html"&gt;sa_get_histogram()&lt;/A&gt; stored procedure.&lt;/P&gt;
&lt;HR /&gt;
&lt;P&gt;The new &lt;A href="http://dcx.sybase.com/index.html#1201/en/dbusage/ug-optimizer-statistics-governor.html"&gt;statistics governor in SQL Anywhere 12&lt;/A&gt; is intended to help "automate" the check for these two issues - when it detects an issue it will try to issue a "&lt;A href="http://dcx.sybase.com/index.html#1201/en/dbreference/create-statistics-statement.html"&gt;CREATE STATISTICS&lt;/A&gt;" statement for you, as needed. Since this feature did not exist in older versions, it may be required to review the statistical data as part of your migration strategy.&lt;/P&gt;</description>
      <pubDate>Fri, 05 Oct 2012 16:23:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/low-performance-with-wrong-statistics/qaa-p/13838197#M4869040</guid>
      <dc:creator>jeff_albion</dc:creator>
      <dc:date>2012-10-05T16:23:43Z</dc:date>
    </item>
    <item>
      <title>Re: Low performance with wrong statistics</title>
      <link>https://community.sap.com/t5/technology-q-a/low-performance-with-wrong-statistics/qaa-p/13838201#M4869044</link>
      <description>&lt;P&gt;Leonardo and Grant,&lt;/P&gt;
&lt;P&gt;Would you please post the graphical plans with statistics before ( I.e.,the  slow plan), and after (i.e., the fast plan) you run  'drop statistics'  statement.  It would be  useful  to investigate these particular  issues  based on your plans.&lt;/P&gt;
&lt;P&gt;With many thanks,
A. Nica&lt;/P&gt;</description>
      <pubDate>Fri, 05 Oct 2012 20:25:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/low-performance-with-wrong-statistics/qaa-p/13838201#M4869044</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-10-05T20:25:45Z</dc:date>
    </item>
    <item>
      <title>Re: Low performance with wrong statistics</title>
      <link>https://community.sap.com/t5/technology-q-a/low-performance-with-wrong-statistics/qaa-p/13838202#M4869045</link>
      <description>&lt;P&gt;Hi Nica,&lt;/P&gt;
&lt;P&gt;Sybase 9.0.2 without drop statistics&lt;/P&gt;
&lt;P&gt; &lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="Re Low performance with wrong statistics"&gt;&lt;img src="https://community.sap.com/t5/image/serverpage/image-id/189664i62C96A17628480AA/image-size/large?v=v2&amp;amp;px=999" role="button" title="Re Low performance with wrong statistics" alt="Re Low performance with wrong statistics" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Sybase 9.0.2 with droped statistics&lt;/P&gt;
&lt;P&gt; &lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="Re Low performance with wrong statistics"&gt;&lt;img src="https://community.sap.com/t5/image/serverpage/image-id/189665iB7766A33471A2BA7/image-size/large?v=v2&amp;amp;px=999" role="button" title="Re Low performance with wrong statistics" alt="Re Low performance with wrong statistics" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Test in Sybase 12.0.1&lt;/P&gt;
&lt;P&gt; &lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="Re Low performance with wrong statistics"&gt;&lt;img src="https://community.sap.com/t5/image/serverpage/image-id/189666i73B5F984D65F0472/image-size/large?v=v2&amp;amp;px=999" role="button" title="Re Low performance with wrong statistics" alt="Re Low performance with wrong statistics" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;UPDATE:&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Select:&lt;/P&gt;
&lt;DIV class="codehilite"&gt;&lt;PRE&gt;&lt;SPAN class="nb"&gt;select&lt;/SPAN&gt; &lt;SPAN class="o"&gt;*&lt;/SPAN&gt; &lt;SPAN class="n"&gt;from&lt;/SPAN&gt; &lt;SPAN class="n"&gt;tbvenpedido&lt;/SPAN&gt; &lt;SPAN class="n"&gt;pedido&lt;/SPAN&gt; &lt;SPAN class="nb"&gt;join&lt;/SPAN&gt; &lt;SPAN class="n"&gt;tbvenitenspedido&lt;/SPAN&gt; &lt;SPAN class="n"&gt;itens&lt;/SPAN&gt; &lt;SPAN class="n"&gt;on&lt;/SPAN&gt; 
&lt;SPAN class="p"&gt;(&lt;/SPAN&gt;&lt;SPAN class="n"&gt;itens&lt;/SPAN&gt;&lt;SPAN class="o"&gt;.&lt;/SPAN&gt;&lt;SPAN class="n"&gt;empresa&lt;/SPAN&gt; &lt;SPAN class="o"&gt;=&lt;/SPAN&gt; &lt;SPAN class="n"&gt;pedido&lt;/SPAN&gt;&lt;SPAN class="o"&gt;.&lt;/SPAN&gt;&lt;SPAN class="n"&gt;empresa&lt;/SPAN&gt; &lt;SPAN class="ow"&gt;and&lt;/SPAN&gt; &lt;SPAN class="n"&gt;itens&lt;/SPAN&gt;&lt;SPAN class="o"&gt;.&lt;/SPAN&gt;&lt;SPAN class="n"&gt;pedido&lt;/SPAN&gt; &lt;SPAN class="o"&gt;=&lt;/SPAN&gt; &lt;SPAN class="n"&gt;pedido&lt;/SPAN&gt;&lt;SPAN class="o"&gt;.&lt;/SPAN&gt;&lt;SPAN class="n"&gt;pedido&lt;/SPAN&gt;&lt;SPAN class="p"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="n"&gt;order&lt;/SPAN&gt; &lt;SPAN class="n"&gt;by&lt;/SPAN&gt; &lt;SPAN class="mi"&gt;1&lt;/SPAN&gt;&lt;SPAN class="p"&gt;,&lt;/SPAN&gt; &lt;SPAN class="mi"&gt;2&lt;/SPAN&gt;
&lt;/PRE&gt;&lt;/DIV&gt;


&lt;P&gt;More details:&lt;/P&gt;
&lt;DIV class="codehilite"&gt;&lt;PRE&gt;  &lt;SPAN class="mf"&gt;740.091&lt;/SPAN&gt; &lt;SPAN class="n"&gt;rows&lt;/SPAN&gt;
  &lt;SPAN class="n"&gt;Database&lt;/SPAN&gt; &lt;SPAN class="n"&gt;size:&lt;/SPAN&gt; &lt;SPAN class="mi"&gt;1&lt;/SPAN&gt;&lt;SPAN class="p"&gt;,&lt;/SPAN&gt;&lt;SPAN class="mi"&gt;5&lt;/SPAN&gt; &lt;SPAN class="n"&gt;gb&lt;/SPAN&gt;
&lt;/PRE&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 08 Oct 2012 17:01:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/low-performance-with-wrong-statistics/qaa-p/13838202#M4869045</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-10-08T17:01:36Z</dc:date>
    </item>
    <item>
      <title>Re: Low performance with wrong statistics</title>
      <link>https://community.sap.com/t5/technology-q-a/low-performance-with-wrong-statistics/qaa-p/13838203#M4869046</link>
      <description>&lt;P&gt;Strange both plans look identical, are your charts correct?&lt;/P&gt;</description>
      <pubDate>Tue, 09 Oct 2012 02:51:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/low-performance-with-wrong-statistics/qaa-p/13838203#M4869046</guid>
      <dc:creator>MCMartin</dc:creator>
      <dc:date>2012-10-09T02:51:38Z</dc:date>
    </item>
    <item>
      <title>Re: Low performance with wrong statistics</title>
      <link>https://community.sap.com/t5/technology-q-a/low-performance-with-wrong-statistics/qaa-p/13838204#M4869047</link>
      <description>&lt;P&gt;Yes &lt;A href="https://sqlanywhere-forum.sap.com/users/52/martin/"&gt;@Martin&lt;/A&gt;, the graphics are correct. The only difference between the two queries is drop statistics [all my tables] statement.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Oct 2012 08:17:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/low-performance-with-wrong-statistics/qaa-p/13838204#M4869047</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-10-09T08:17:59Z</dc:date>
    </item>
    <item>
      <title>Re: Low performance with wrong statistics</title>
      <link>https://community.sap.com/t5/technology-q-a/low-performance-with-wrong-statistics/qaa-p/13838198#M4869041</link>
      <description>&lt;P&gt;Leonardo,&lt;/P&gt;
&lt;P&gt;Please post the plan files (or sent them to me directly at &lt;A href="mailto:anisoara.nica@sap.com"&gt;anisoara.nica@sap.com&lt;/A&gt;):
in dbisql:
 1. call sa_flush_cache() before each execution
 2. in the 'Plan Viewer', set the option 'Detailed and node statisitcs'
 3. 'Get Plan'
 4. save the plan in a file using 'Save As...'
 5. repeat 1-4 for each combination {without drop stats, drop stats} X {with order by, without order by}&lt;/P&gt;
&lt;P&gt;Thanks
Ani&lt;/P&gt;</description>
      <pubDate>Tue, 09 Oct 2012 13:54:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/low-performance-with-wrong-statistics/qaa-p/13838198#M4869041</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-10-09T13:54:20Z</dc:date>
    </item>
    <item>
      <title>Re: Low performance with wrong statistics</title>
      <link>https://community.sap.com/t5/technology-q-a/low-performance-with-wrong-statistics/qaa-p/13838205#M4869048</link>
      <description>&lt;P&gt;Jeff Albion,
If the statistics generated are used just to improve the performance of the database, "because" this happens misconduct? Incorrect normalization of the database?&lt;/P&gt;</description>
      <pubDate>Tue, 09 Oct 2012 15:35:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/low-performance-with-wrong-statistics/qaa-p/13838205#M4869048</guid>
      <dc:creator>former_SQLA_member1694872</dc:creator>
      <dc:date>2012-10-09T15:35:37Z</dc:date>
    </item>
    <item>
      <title>Re: Low performance with wrong statistics</title>
      <link>https://community.sap.com/t5/technology-q-a/low-performance-with-wrong-statistics/qaa-p/13838199#M4869042</link>
      <description>&lt;P&gt;These are the results:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://sqlanywhere-forum.sap.com/upfiles/Before_drop_statistics_without_orderby.pdf"&gt;Before drop statistics without order by clause&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://sqlanywhere-forum.sap.com/upfiles/Before_drop_statistics_with_orderby.pdf"&gt;Before drop statistics with order by clause&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://sqlanywhere-forum.sap.com/upfiles/After_drop_statistics_without_orderby.pdf"&gt;After drop statistics without order by clause&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://sqlanywhere-forum.sap.com/upfiles/After_drop_statistics_with_orderby.pdf"&gt;After drop statistics with order by clause&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;In my previous tests I was not running the command: &lt;CODE&gt;call sa_flush_cache()&lt;/CODE&gt; so the result was so diverse. I do not understand why the return of &lt;CODE&gt;select&lt;/CODE&gt; is so slow.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Oct 2012 13:42:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/low-performance-with-wrong-statistics/qaa-p/13838199#M4869042</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-10-10T13:42:30Z</dc:date>
    </item>
    <item>
      <title>Re: Low performance with wrong statistics</title>
      <link>https://community.sap.com/t5/technology-q-a/low-performance-with-wrong-statistics/qaa-p/13838206#M4869049</link>
      <description>&lt;P&gt;Can you please email or attach the query plan as per the instructions. The screen caps and PDFs do not contain all of the information nor provides an easy mechanism to analyze the issue.  To get the plan that we require,&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Go to Tools | Plan Viewer or Shift-F5&lt;/LI&gt;
&lt;LI&gt;Set the Statistics Level drop down to "Detailed and node statistics"&lt;/LI&gt;
&lt;LI&gt;Click Get Plan button&lt;/LI&gt;
&lt;LI&gt;Click Save As ... button and select a filename that identifies the plan iteration&lt;/LI&gt;
&lt;LI&gt;Post or email the .saplan file that is generated from each iteration.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;Please ensure that sa_flush_cache() is called for each iteration as noted in Ani's previous post.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Oct 2012 14:25:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/low-performance-with-wrong-statistics/qaa-p/13838206#M4869049</guid>
      <dc:creator>chris_keating</dc:creator>
      <dc:date>2012-10-10T14:25:40Z</dc:date>
    </item>
    <item>
      <title>Re: Low performance with wrong statistics</title>
      <link>https://community.sap.com/t5/technology-q-a/low-performance-with-wrong-statistics/qaa-p/13838207#M4869050</link>
      <description>&lt;P&gt;I'm not 100% sure about your question, but if you're implying that the above described behaviour is possibly a "bug", I would instead suggest this is more of a known product limitation that we're always trying to improve upon.&lt;/P&gt;
&lt;P&gt;As much as we try to mathematically keep track of accurate information, as I mentioned, over time this can become "skewed" (due to rounding issues of the actual percentage values themselves, plus the fact that we do not automatically re-divide up the histogram ranges without CREATE STATISTICS being run).&lt;/P&gt;
&lt;P&gt;Since we don't know that the statistical information is really different than what appears for all of the values stored in the table (until a manual SQL request comes in to re-evaluate the statistics), the database doesn't have a chance to correct itself. &lt;/P&gt;
&lt;P&gt;The newer versions of SQL Anywhere now try to limit this behaviour by doing this dynamic monitoring of the statistics for you rather than assuming that the user will be constantly monitoring the statistics themselves and adjusting as necessary manually (older SQL Anywhere versions).&lt;/P&gt;
&lt;HR /&gt;
&lt;P&gt;Aside: "&lt;A href="http://en.wikipedia.org/wiki/Database_normalization"&gt;Normalizing a database&lt;/A&gt;" generally implies something about the way entities are arranged in a schema (from a theoretical perspective) and is not related to database statistics (used for optimization at runtime).&lt;/P&gt;</description>
      <pubDate>Wed, 10 Oct 2012 17:23:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/low-performance-with-wrong-statistics/qaa-p/13838207#M4869050</guid>
      <dc:creator>jeff_albion</dc:creator>
      <dc:date>2012-10-10T17:23:39Z</dc:date>
    </item>
    <item>
      <title>Re: Low performance with wrong statistics</title>
      <link>https://community.sap.com/t5/technology-q-a/low-performance-with-wrong-statistics/qaa-p/13838208#M4869051</link>
      <description>&lt;P&gt;Hi, &lt;A href="https://sqlanywhere-forum.sap.com/users/108/jeff-albion/"&gt;@Jeff&lt;/A&gt; Albion 
I do not mean to imply anything, just had a little doubt about "whether normalization of a database" could influence your performance with statistics. Now it's clearer. Sorry. Thank you!&lt;/P&gt;</description>
      <pubDate>Thu, 11 Oct 2012 13:51:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/low-performance-with-wrong-statistics/qaa-p/13838208#M4869051</guid>
      <dc:creator>former_SQLA_member1694872</dc:creator>
      <dc:date>2012-10-11T13:51:34Z</dc:date>
    </item>
  </channel>
</rss>

