<?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 how can i export a sas data set with 444 columns into access? The limit is 255 columns. in SAS Data Management</title>
    <link>https://communities.sas.com/t5/SAS-Data-Management/how-can-i-export-a-sas-data-set-with-444-columns-into-access-The/m-p/254308#M6888</link>
    <description>&lt;P&gt;how can i export a sas data set with 444 columns into access? The limit is 255 columns.&lt;/P&gt;</description>
    <pubDate>Thu, 03 Mar 2016 19:50:49 GMT</pubDate>
    <dc:creator>Maicemuallem</dc:creator>
    <dc:date>2016-03-03T19:50:49Z</dc:date>
    <item>
      <title>how can i export a sas data set with 444 columns into access? The limit is 255 columns.</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/how-can-i-export-a-sas-data-set-with-444-columns-into-access-The/m-p/254308#M6888</link>
      <description>&lt;P&gt;how can i export a sas data set with 444 columns into access? The limit is 255 columns.&lt;/P&gt;</description>
      <pubDate>Thu, 03 Mar 2016 19:50:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/how-can-i-export-a-sas-data-set-with-444-columns-into-access-The/m-p/254308#M6888</guid>
      <dc:creator>Maicemuallem</dc:creator>
      <dc:date>2016-03-03T19:50:49Z</dc:date>
    </item>
    <item>
      <title>Re: how can i export a sas data set with 444 columns into access? The limit is 255 columns.</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/how-can-i-export-a-sas-data-set-with-444-columns-into-access-The/m-p/254311#M6889</link>
      <description>&lt;P&gt;That's an Access limitation, right?&lt;/P&gt;
&lt;P&gt;If so, there's nothing much SAS can do about that, technically.&lt;/P&gt;
&lt;P&gt;You should consider your data structure. How can you even handle that many columns. Think of naming all those columns in a query etc...&lt;/P&gt;
&lt;P&gt;Transpose and&amp;nbsp;normalize your data. It will&amp;nbsp;make it easier to use and maintain. Ans as a bonus, being able to export to Access &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Mar 2016 20:03:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/how-can-i-export-a-sas-data-set-with-444-columns-into-access-The/m-p/254311#M6889</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2016-03-03T20:03:23Z</dc:date>
    </item>
    <item>
      <title>Re: how can i export a sas data set with 444 columns into access? The limit is 255 columns.</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/how-can-i-export-a-sas-data-set-with-444-columns-into-access-The/m-p/254312#M6890</link>
      <description>&lt;P&gt;Access 2010 - 255 columns in a table.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://support.office.com/en-us/article/Access-2010-specifications-1e521481-7f9a-46f7-8ed9-ea9dff1fa854" target="_blank"&gt;https://support.office.com/en-us/article/Access-2010-specifications-1e521481-7f9a-46f7-8ed9-ea9dff1fa854&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Separate data into two tables that can be linked by an ID. Each table holding less than 255 columns.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Mar 2016 20:09:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/how-can-i-export-a-sas-data-set-with-444-columns-into-access-The/m-p/254312#M6890</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-03-03T20:09:39Z</dc:date>
    </item>
    <item>
      <title>Re: how can i export a sas data set with 444 columns into access? The limit is 255 columns.</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/how-can-i-export-a-sas-data-set-with-444-columns-into-access-The/m-p/254425#M6891</link>
      <description>&lt;P&gt;As&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13674"&gt;@LinusH﻿&lt;/a&gt;&amp;nbsp;has stated, structure your data correctly. &amp;nbsp;Access is (a rather poor sibling to anyway), a Relational Database. &amp;nbsp;What this means is that data elements only appear once, these distinct lists as simple to merge back together but are not stored in one table. &amp;nbsp;Attached is a picture which shows an example. &amp;nbsp;You will see that the data is split out into separate tables, each with links to other tables. &amp;nbsp;This is what "relational" means, once they are merged together by the variables then you get the full data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There are many reasons for this setup. &amp;nbsp;I would suggest you read up on what a Relation Database is, and how your data should look:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://en.wikipedia.org/wiki/Relational_database" target="_blank"&gt;https://en.wikipedia.org/wiki/Relational_database&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;For example as a starter. &amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then plan out your database schema -&amp;gt; much like the picture attached, draw each table, what distinct values it will contain, how they link together, then its just a matter of processing your one dataset in SAS to create each of the required datasets, which in turn can then be inserted into the respective table in Access. &amp;nbsp;Note that SAS is not a Relational Database, so the structure is slighty different.&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/12349i6555ADE5AC0BBD19/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="access.png" title="access.png" /&gt;</description>
      <pubDate>Fri, 04 Mar 2016 09:35:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/how-can-i-export-a-sas-data-set-with-444-columns-into-access-The/m-p/254425#M6891</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2016-03-04T09:35:40Z</dc:date>
    </item>
  </channel>
</rss>

