<?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: modify windows 64bit datasets using 32bit SAS in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/modify-windows-64bit-datasets-using-32bit-SAS/m-p/436610#M108604</link>
    <description>&lt;P&gt;I found the answer from the following Knowledge Base(KB) and documentation.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/kb/52/716.html" target="_blank"&gt;http://support.sas.com/kb/52/716.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a000214133.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a000214133.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;DK&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 13 Feb 2018 09:00:00 GMT</pubDate>
    <dc:creator>Dennis_K</dc:creator>
    <dc:date>2018-02-13T09:00:00Z</dc:date>
    <item>
      <title>modify windows 64bit datasets using 32bit SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/modify-windows-64bit-datasets-using-32bit-SAS/m-p/435168#M108066</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've SAS datasets in 64-bit but i'm using SAS 9.2 in 32-bit environment.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How do I use the PROC DATASETS to change the variable format?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I Encountered the following error :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; + proc datasets library=test nolist;&amp;nbsp;&amp;nbsp;&amp;nbsp; modify AE (encoding = 'utf-8');&lt;BR /&gt;ERROR: File test.AE cannot be updated because its encoding does not match the session encoding or the file is in a format native&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; to another host, such as WINDOWS_64.&lt;BR /&gt;1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; +&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; format AEACN $A128608A.;&amp;nbsp; run;&lt;BR /&gt;&lt;BR /&gt;NOTE: Statements not processed because of errors noted above.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Appreciate any advice given&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;DK&lt;/P&gt;</description>
      <pubDate>Thu, 08 Feb 2018 06:13:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/modify-windows-64bit-datasets-using-32bit-SAS/m-p/435168#M108066</guid>
      <dc:creator>Dennis_K</dc:creator>
      <dc:date>2018-02-08T06:13:12Z</dc:date>
    </item>
    <item>
      <title>Re: modify windows 64bit datasets using 32bit SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/modify-windows-64bit-datasets-using-32bit-SAS/m-p/435175#M108071</link>
      <description>&lt;P&gt;Do you know for sure these are 64-bit datasets or are you assuming that from the error message? What happens if you report on the contents of the dataset? Does it work:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc datasets library=test nolist;    
  contents AE;
run;
quit; &lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;If these are genuine 64-bit datasets I think you will have to find yourself a working version of 64-bit SAS to read them and write them out in 32-bit format so they will work on your 32-bit SAS. With SAS 9.2 PROC COPY using the XPORT engine might be your safest bet.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Feb 2018 07:30:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/modify-windows-64bit-datasets-using-32bit-SAS/m-p/435175#M108071</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2018-02-08T07:30:56Z</dc:date>
    </item>
    <item>
      <title>Re: modify windows 64bit datasets using 32bit SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/modify-windows-64bit-datasets-using-32bit-SAS/m-p/435193#M108082</link>
      <description>&lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;i tried using the XPORT file but i'm hitting the folllowing error:&lt;BR /&gt;&lt;BR /&gt;ERROR: the variable name is illegal for the version 6 file&lt;BR /&gt;&lt;BR /&gt;I tried set the VALIDVARNAME =V6 but still the datasets could not be&lt;BR /&gt;saved onto the transport file.&lt;BR /&gt;</description>
      <pubDate>Thu, 08 Feb 2018 09:01:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/modify-windows-64bit-datasets-using-32bit-SAS/m-p/435193#M108082</guid>
      <dc:creator>Dennis_K</dc:creator>
      <dc:date>2018-02-08T09:01:51Z</dc:date>
    </item>
    <item>
      <title>Re: modify windows 64bit datasets using 32bit SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/modify-windows-64bit-datasets-using-32bit-SAS/m-p/435301#M108137</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/128145"&gt;@Dennis_K&lt;/a&gt; wrote:&lt;BR /&gt;&lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;i tried using the XPORT file but i'm hitting the folllowing error:&lt;BR /&gt;&lt;BR /&gt;ERROR: the variable name is illegal for the version 6 file&lt;BR /&gt;&lt;BR /&gt;I tried set the VALIDVARNAME =V6 but still the datasets could not be&lt;BR /&gt;saved onto the transport file.&lt;BR /&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;VERSION 6 files have a variable name length of 8 characters. So you have more of an issue going on than "bitness", which would be 16 for these, not 64. The message you get is because that is the most common bit difference running around since SAS V7 was the first 32 bit version (IIRC) and that about 18(?) years ago&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you show the libname statement you use to see the library that data set is in?&lt;/P&gt;
&lt;P&gt;You may need to specify the data engine to access Version 6 files as&lt;/P&gt;
&lt;P&gt;Libname mylib V6 "path";&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Feb 2018 15:48:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/modify-windows-64bit-datasets-using-32bit-SAS/m-p/435301#M108137</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-02-08T15:48:42Z</dc:date>
    </item>
    <item>
      <title>Re: modify windows 64bit datasets using 32bit SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/modify-windows-64bit-datasets-using-32bit-SAS/m-p/436610#M108604</link>
      <description>&lt;P&gt;I found the answer from the following Knowledge Base(KB) and documentation.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/kb/52/716.html" target="_blank"&gt;http://support.sas.com/kb/52/716.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a000214133.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a000214133.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;DK&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Feb 2018 09:00:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/modify-windows-64bit-datasets-using-32bit-SAS/m-p/436610#M108604</guid>
      <dc:creator>Dennis_K</dc:creator>
      <dc:date>2018-02-13T09:00:00Z</dc:date>
    </item>
  </channel>
</rss>

