<?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 Data modelling in sas in SAS Data Management</title>
    <link>https://communities.sas.com/t5/SAS-Data-Management/Data-modelling-in-sas/m-p/448591#M13825</link>
    <description>&lt;P&gt;I want to link 2 or more tables.&amp;nbsp;&lt;BR /&gt;One way is to join the tables which will increase the size of my fact tables&lt;/P&gt;&lt;P&gt;Is there any other way to link 2 or more table?&lt;/P&gt;&lt;P&gt;Can we built a data model using any SAS product.&lt;/P&gt;</description>
    <pubDate>Mon, 26 Mar 2018 11:09:42 GMT</pubDate>
    <dc:creator>jmehul</dc:creator>
    <dc:date>2018-03-26T11:09:42Z</dc:date>
    <item>
      <title>Data modelling in sas</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Data-modelling-in-sas/m-p/448591#M13825</link>
      <description>&lt;P&gt;I want to link 2 or more tables.&amp;nbsp;&lt;BR /&gt;One way is to join the tables which will increase the size of my fact tables&lt;/P&gt;&lt;P&gt;Is there any other way to link 2 or more table?&lt;/P&gt;&lt;P&gt;Can we built a data model using any SAS product.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Mar 2018 11:09:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Data-modelling-in-sas/m-p/448591#M13825</guid>
      <dc:creator>jmehul</dc:creator>
      <dc:date>2018-03-26T11:09:42Z</dc:date>
    </item>
    <item>
      <title>Re: Data modelling in sas</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Data-modelling-in-sas/m-p/448593#M13826</link>
      <description>&lt;P&gt;You can create views that do the merge on the fly when accessed.&lt;/P&gt;
&lt;P&gt;For lookups, consider creating custom formats.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Mar 2018 11:11:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Data-modelling-in-sas/m-p/448593#M13826</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-03-26T11:11:42Z</dc:date>
    </item>
    <item>
      <title>Re: Data modelling in sas</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Data-modelling-in-sas/m-p/448698#M13831</link>
      <description>SAS doesn't have any data modelling themselves. &lt;BR /&gt;But you can pretty much implement any data model in SAS.&lt;BR /&gt;I see that you marked this as solved, but at least I am not able to understand your requirements and constraints, and specifically how you are going to solve this.&lt;BR /&gt;It would be interesting to understand what reporting requirements you have, and what type of queries/tools you are you using.</description>
      <pubDate>Mon, 26 Mar 2018 16:30:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Data-modelling-in-sas/m-p/448698#M13831</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2018-03-26T16:30:06Z</dc:date>
    </item>
    <item>
      <title>Re: Data modelling in sas</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Data-modelling-in-sas/m-p/448712#M13832</link>
      <description>&lt;P&gt;I want to link my facts and dimension&amp;nbsp;table and I don't&amp;nbsp;want to join them as it will increase the size&amp;nbsp;of my fact table.&lt;BR /&gt;As he said I have to create views at the rum time what I was thinking of using the&amp;nbsp;proc sql&amp;nbsp;statement.&lt;BR /&gt;&lt;BR /&gt;load fact (A) and dimension (B) tables and then&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;proc sql;&lt;/P&gt;&lt;P&gt;select&amp;nbsp; A.age,&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;B.salary,&lt;/P&gt;&lt;P&gt;from A,B&lt;/P&gt;&lt;P&gt;where A.Id= B.Id;&lt;BR /&gt;Quit;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;then I will drop the table A and B.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Need Suggestions!&lt;/P&gt;</description>
      <pubDate>Mon, 26 Mar 2018 17:03:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Data-modelling-in-sas/m-p/448712#M13832</guid>
      <dc:creator>jmehul</dc:creator>
      <dc:date>2018-03-26T17:03:09Z</dc:date>
    </item>
    <item>
      <title>Re: Data modelling in sas</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Data-modelling-in-sas/m-p/448726#M13833</link>
      <description>&lt;P&gt;Depending on table sizes, you can create a format from one table and use it in the other.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Mar 2018 17:22:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Data-modelling-in-sas/m-p/448726#M13833</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-03-26T17:22:26Z</dc:date>
    </item>
    <item>
      <title>Re: Data modelling in sas</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Data-modelling-in-sas/m-p/448760#M13835</link>
      <description>Not sure if views are the best alternative, you need to test performance with example queries.&lt;BR /&gt;Why do you need to create a layer on top?  Can't the application/users do the star schema joins?</description>
      <pubDate>Mon, 26 Mar 2018 17:58:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Data-modelling-in-sas/m-p/448760#M13835</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2018-03-26T17:58:29Z</dc:date>
    </item>
    <item>
      <title>Re: Data modelling in sas</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Data-modelling-in-sas/m-p/448765#M13836</link>
      <description>Addition: &lt;BR /&gt;1. Consider the star schema as the master for the report layer. The star schema will help you to keep the data model consistent.  &lt;BR /&gt;2. A semantic demoralized layer should be derived from and potentially have the ability to be totally recreated from the star schema (if physical).&lt;BR /&gt;3. You can't delete the underlying tables when you create a view. If you think that's feasable I think you need on site design assistance....</description>
      <pubDate>Mon, 26 Mar 2018 18:04:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Data-modelling-in-sas/m-p/448765#M13836</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2018-03-26T18:04:44Z</dc:date>
    </item>
  </channel>
</rss>

