<?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>topic clear buffer in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/clear-buffer/m-p/4914428#M1147182</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;experts,&lt;/P&gt;&lt;P&gt;        i have selected data from a data base table whose buffering is on,&lt;/P&gt;&lt;P&gt;  when i want to check the runtime analaysis  for the same selection condition after a while , now the data gets fetched from the buffer. no for accuracy i have to explicitly clear the buffer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in short can i clear the buffer explicitly .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 11 Dec 2008 08:49:04 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-12-11T08:49:04Z</dc:date>
    <item>
      <title>clear buffer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/clear-buffer/m-p/4914428#M1147182</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;experts,&lt;/P&gt;&lt;P&gt;        i have selected data from a data base table whose buffering is on,&lt;/P&gt;&lt;P&gt;  when i want to check the runtime analaysis  for the same selection condition after a while , now the data gets fetched from the buffer. no for accuracy i have to explicitly clear the buffer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in short can i clear the buffer explicitly .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Dec 2008 08:49:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/clear-buffer/m-p/4914428#M1147182</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-11T08:49:04Z</dc:date>
    </item>
    <item>
      <title>Re: clear buffer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/clear-buffer/m-p/4914429#M1147183</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi  rae z,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can use addition &lt;STRONG&gt;BYPASSING BUFFER&lt;/STRONG&gt; with select stament and it will fetch the data from the database directly without picing buffered data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addition 3 &lt;/P&gt;&lt;P&gt;... BYPASSING BUFFER &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Effect&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;This addition causes the SELECT statement to avoid the SAP buffering and to read directly from the database and not from the buffer on the application server. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Hope it will solve your problem..&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;ilesh 24x7&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Dec 2008 09:09:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/clear-buffer/m-p/4914429#M1147183</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-11T09:09:46Z</dc:date>
    </item>
    <item>
      <title>Re: clear buffer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/clear-buffer/m-p/4914430#M1147184</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I only know a way to invalidate the entire buffer of the application server, which is certainly not recommened for your purpose.&lt;/P&gt;&lt;P&gt;You can also add BYPASSING BUFFER to your select statement(s). However, I would rather rely on your measurements with buffered data, since that's how the program will behave in reality. So for accuracy, discard the first measurement and work with subsequent ones.&lt;/P&gt;&lt;P&gt;Thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Dec 2008 09:10:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/clear-buffer/m-p/4914430#M1147184</guid>
      <dc:creator>ThomasZloch</dc:creator>
      <dc:date>2008-12-11T09:10:51Z</dc:date>
    </item>
    <item>
      <title>Re: clear buffer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/clear-buffer/m-p/4914431#M1147185</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rae&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As far as i know clearing the buffer records from Database more of a basis kind of requirement but you &lt;/P&gt;&lt;P&gt;can ignore the buffer by putting &lt;STRONG&gt;BYPASS BUFFER&lt;/STRONG&gt; in your select Query.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Neha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Dec 2008 09:15:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/clear-buffer/m-p/4914431#M1147185</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-11T09:15:04Z</dc:date>
    </item>
    <item>
      <title>Re: clear buffer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/clear-buffer/m-p/4914432#M1147186</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check this link:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="982929"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Prashant.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Dec 2008 09:21:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/clear-buffer/m-p/4914432#M1147186</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-11T09:21:55Z</dc:date>
    </item>
    <item>
      <title>Re: clear buffer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/clear-buffer/m-p/4914433#M1147187</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the linked thread does not help at all:&lt;/P&gt;&lt;P&gt;&amp;gt; buffered tables are either fully, generic or single record buffered. If a fully buffered table is invalidated,&lt;/P&gt;&lt;P&gt;&amp;gt; the whole table is marked invalid in other application servers. It requires just one information: 'valid' &lt;/P&gt;&lt;P&gt;&amp;gt; or 'invalid'. This information is stored in the buffer of an application server corresponding to the table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This completely missleading, it is not an interesting advantage that the fully buffered table has only one status field. One should be aware that needing one line of a fully buffered table, will result in reading once the whole table, that is an overhead which you should be considered.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Original question:&lt;/P&gt;&lt;P&gt;You should better measure the selection from the buffer if it works, that is your application. It is not necessary to measure the advantage of a buffer, that is done be somebody else. In a fast system, a select single will cost 100 or 200 microsec and a read from a buffer only 5 microsec.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Siegfried&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Dec 2008 14:45:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/clear-buffer/m-p/4914433#M1147187</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-11T14:45:32Z</dc:date>
    </item>
    <item>
      <title>Re: clear buffer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/clear-buffer/m-p/4914434#M1147188</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This message was moderated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Dec 2008 08:25:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/clear-buffer/m-p/4914434#M1147188</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-17T08:25:16Z</dc:date>
    </item>
  </channel>
</rss>

