<?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: RE:tables in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/re-tables/m-p/3073132#M728609</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;oh well, assume a table with 10 million records e.G. MARC, you do NOT want to buffer them all, unless you got some hundred terra byte RAM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so in this case you dont buffer because it wont work, or if it will work the performance of the rest of the system will suffer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you have a table which is beeing used/changed 2 times a year, you dont NEED to buffer, since at those 2 times it doesnt matter if it takes a second or 10 seconds.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;those are 2 ideas behind it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 27 Nov 2007 12:24:07 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-11-27T12:24:07Z</dc:date>
    <item>
      <title>RE:tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/re-tables/m-p/3073129#M728606</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On what reason table is decided to be single record or full table record buffer or generic record buffer in technical settings for a table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Alex&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Nov 2007 12:18:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/re-tables/m-p/3073129#M728606</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-27T12:18:22Z</dc:date>
    </item>
    <item>
      <title>Re: RE:tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/re-tables/m-p/3073130#M728607</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Alex,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It depends on the size of the table and change frequency of the records buffered. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;John.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Nov 2007 12:20:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/re-tables/m-p/3073130#M728607</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-27T12:20:22Z</dc:date>
    </item>
    <item>
      <title>Re: RE:tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/re-tables/m-p/3073131#M728608</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;lt;b&amp;gt;The buffering type defines which table records are loaded into the buffer of the application server when a table record is accessed.&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are the following buffering types:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Full buffering&amp;lt;/b&amp;gt;: All the records of the table are loaded into the buffer when one record of the table is accessed. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Generic buffering&amp;lt;/b&amp;gt;: When a record of the table is accessed, all the records having this record in the generic key fields (part of the table key that is left-justified, identified by specifying a number of key fields) are loaded into the buffer. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Single-record buffering&amp;lt;/b&amp;gt;: Only the records of a table that are really accessed are loaded into the buffer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Nov 2007 12:22:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/re-tables/m-p/3073131#M728608</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-27T12:22:10Z</dc:date>
    </item>
    <item>
      <title>Re: RE:tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/re-tables/m-p/3073132#M728609</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;oh well, assume a table with 10 million records e.G. MARC, you do NOT want to buffer them all, unless you got some hundred terra byte RAM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so in this case you dont buffer because it wont work, or if it will work the performance of the rest of the system will suffer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you have a table which is beeing used/changed 2 times a year, you dont NEED to buffer, since at those 2 times it doesnt matter if it takes a second or 10 seconds.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;those are 2 ideas behind it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Nov 2007 12:24:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/re-tables/m-p/3073132#M728609</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-27T12:24:07Z</dc:date>
    </item>
  </channel>
</rss>

