<?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 Diff b/w VIEW and CLUSTER TABLE in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-b-w-view-and-cluster-table/m-p/3405535#M817842</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guys,&lt;/P&gt;&lt;P&gt;Can anybody let me know the difference between cluster table and view?&lt;/P&gt;&lt;P&gt;I know about diff types of view, just i need difference?&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;Chandru&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 08 Feb 2008 08:03:51 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-08T08:03:51Z</dc:date>
    <item>
      <title>Diff b/w VIEW and CLUSTER TABLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-b-w-view-and-cluster-table/m-p/3405535#M817842</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guys,&lt;/P&gt;&lt;P&gt;Can anybody let me know the difference between cluster table and view?&lt;/P&gt;&lt;P&gt;I know about diff types of view, just i need difference?&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;Chandru&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Feb 2008 08:03:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/diff-b-w-view-and-cluster-table/m-p/3405535#M817842</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-08T08:03:51Z</dc:date>
    </item>
    <item>
      <title>Re: Diff b/w VIEW and CLUSTER TABLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-b-w-view-and-cluster-table/m-p/3405536#M817843</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;A database view is defined in the ABAP Dictionary and automatically created on the database during&lt;/P&gt;&lt;P&gt;activation. Accesses to a database view are passed directly to the database from the database interface.&lt;/P&gt;&lt;P&gt;The database software performs the data selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the definition of a database view is changed in the ABAP Dictionary, the view created on the database&lt;/P&gt;&lt;P&gt;must be adjusted to this change. Since a view does not contain any data, this adjustment is made by&lt;/P&gt;&lt;P&gt;deleting the old view definition and creating the view again in the ABAP Dictionary with its new definition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The maintenance status defines whether you can only read with the view or whether you can also write&lt;/P&gt;&lt;P&gt;with it. If a database view was defined with more than one table, this view must be read only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The data read with a database view can be buffered. View data is buffered analogously to tables. The&lt;/P&gt;&lt;P&gt;technical settings of a database view control whether the view data may be buffered and how this should&lt;/P&gt;&lt;P&gt;be done. The same settings (buffering types) can be used here as for table buffering. The buffered view&lt;/P&gt;&lt;P&gt;data is invalidated when the data in one of the base tables of the view changes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Database views implement an inner join. You only get those records which have an entry in all the tables&lt;/P&gt;&lt;P&gt;included in the view.&lt;/P&gt;&lt;P&gt;Maintenance views implement an outer join.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Hope this is helpful, Do reward.&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Feb 2008 08:07:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/diff-b-w-view-and-cluster-table/m-p/3405536#M817843</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-08T08:07:52Z</dc:date>
    </item>
    <item>
      <title>Re: Diff b/w VIEW and CLUSTER TABLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-b-w-view-and-cluster-table/m-p/3405537#M817844</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;&lt;/P&gt;&lt;P&gt;  Cluster tables are nothing but Data base tables so my explanation is as follows for ur question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   The Table has a physical storage of data whereas views do not have physical storage of data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   The view is derived from one or more tables which is created only with the required fields&lt;/P&gt;&lt;P&gt; from the database table(s). It can also be created with table inner joins and specifying conditions&lt;/P&gt;&lt;P&gt; for data retrieval.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Feb 2008 08:18:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/diff-b-w-view-and-cluster-table/m-p/3405537#M817844</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-08T08:18:19Z</dc:date>
    </item>
    <item>
      <title>Re: Diff b/w VIEW and CLUSTER TABLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-b-w-view-and-cluster-table/m-p/3405538#M817845</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;&lt;STRONG&gt;Views:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A View is a logical view on one or more tables.&lt;/P&gt;&lt;P&gt;A view on one or more tables i.e., the data from a view is not actually physically stored instead being derived from one or more tables.&lt;/P&gt;&lt;P&gt;A View can be used to summarize data which is distributed among several tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Types of Views:&lt;/P&gt;&lt;P&gt;Projection View - It is a view that just retrives some fields from a single table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Help View - This view is used for Search Help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Database View - This is a inner join view of one or more tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maintenance View - Helps in creating maintaining data of the application object. The data can be distributed among several tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;CLUSTER TABLE&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cluster tables where those tables designed for this other restriction you heard from (more than 255 fields). But they have other advantages too. They store information's belonging together in the same database blocks, this improves also performance when you read them&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Hope this is helpful, Do reward.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Chaitanya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Feb 2008 08:25:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/diff-b-w-view-and-cluster-table/m-p/3405538#M817845</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-08T08:25:25Z</dc:date>
    </item>
  </channel>
</rss>

