<?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 Re: Which SQL statement bypassess the table buffer? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/which-sql-statement-bypassess-the-table-buffer/m-p/2702310#M625855</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; When you are writing the select you need to mention as BYPASSING BUFFER to get the online data from database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Ex:  SELECT MATNR FROM MARA BYPASSING BUFFER INTO TABLE ITAB_MARA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Chowdary&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 16 Aug 2007 12:18:40 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-16T12:18:40Z</dc:date>
    <item>
      <title>Which SQL statement bypassess the table buffer?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/which-sql-statement-bypassess-the-table-buffer/m-p/2702308#M625853</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;help me&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Aug 2007 12:08:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/which-sql-statement-bypassess-the-table-buffer/m-p/2702308#M625853</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-16T12:08:13Z</dc:date>
    </item>
    <item>
      <title>Re: Which SQL statement bypassess the table buffer?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/which-sql-statement-bypassess-the-table-buffer/m-p/2702309#M625854</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT (column_syntax) &lt;/P&gt;&lt;P&gt;       FROM (dbtab_syntax)  bypassing buffer&lt;/P&gt;&lt;P&gt;       INTO CORRESPONDING FIELDS OF TABLE itab. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Aug 2007 12:16:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/which-sql-statement-bypassess-the-table-buffer/m-p/2702309#M625854</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-16T12:16:58Z</dc:date>
    </item>
    <item>
      <title>Re: Which SQL statement bypassess the table buffer?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/which-sql-statement-bypassess-the-table-buffer/m-p/2702310#M625855</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; When you are writing the select you need to mention as BYPASSING BUFFER to get the online data from database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Ex:  SELECT MATNR FROM MARA BYPASSING BUFFER INTO TABLE ITAB_MARA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Chowdary&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Aug 2007 12:18:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/which-sql-statement-bypassess-the-table-buffer/m-p/2702310#M625855</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-16T12:18:40Z</dc:date>
    </item>
    <item>
      <title>Re: Which SQL statement bypassess the table buffer?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/which-sql-statement-bypassess-the-table-buffer/m-p/2702311#M625856</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sample code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : begin of itab occurs 3 ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        ebeln  type  ebeln ,&lt;/P&gt;&lt;P&gt;        ebelp  type  ebelp ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        end of itab .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        select ebeln&lt;/P&gt;&lt;P&gt;               ebelp from&lt;/P&gt;&lt;P&gt;               ekpo bypassing buffer&lt;/P&gt;&lt;P&gt;               into table itab .&lt;/P&gt;&lt;P&gt;               &lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Aug 2007 12:20:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/which-sql-statement-bypassess-the-table-buffer/m-p/2702311#M625856</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-16T12:20:06Z</dc:date>
    </item>
    <item>
      <title>Re: Which SQL statement bypassess the table buffer?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/which-sql-statement-bypassess-the-table-buffer/m-p/2702312#M625857</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if usefull&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Following are the SQL statements which bypass table buffer; avoid these statements when working with buffered tables.&lt;/P&gt;&lt;P&gt;SELECT ... BYPASSING BUFFER.&lt;/P&gt;&lt;P&gt;SELECT from the database views &lt;/P&gt;&lt;P&gt;SELECT ... DISTINCT ... .&lt;/P&gt;&lt;P&gt;SELECT COUNT, SUM, AVG, MIN, MAX.&lt;/P&gt;&lt;P&gt;SELECT ... ORDER BY (other than the primary key) &lt;/P&gt;&lt;P&gt;SELECT ... FOR UPDATE. (EXEC ... ENDEXEC)&lt;/P&gt;&lt;P&gt;Native SQL statements.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Aug 2007 12:39:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/which-sql-statement-bypassess-the-table-buffer/m-p/2702312#M625857</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-16T12:39:56Z</dc:date>
    </item>
    <item>
      <title>Re: Which SQL statement bypassess the table buffer?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/which-sql-statement-bypassess-the-table-buffer/m-p/2702313#M625858</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Naresh r u really satisfying with these type points u r getting &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;deepthi and rahul also y r u giving points to only naresh &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;guys please give some value to this great forum..................&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Aug 2007 12:49:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/which-sql-statement-bypassess-the-table-buffer/m-p/2702313#M625858</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-16T12:49:00Z</dc:date>
    </item>
  </channel>
</rss>

