<?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: open formats in 64bit (from 32 bit) in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/open-formats-in-64bit-from-32-bit/m-p/255098#M48716</link>
    <description>&lt;P&gt;Your best bet is to run the code that generated the formats originally.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Next would be to run proc format with the cntlout option on a 32 bit machine that can read the formats. Then you use the created dataset with the Cntlin option on proc format to create the formats.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Other options are pretty much all going to start with the a 32 bit machine to read them.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Catalogs are generally not cross platform accessible and the formats are one of those.&lt;/P&gt;</description>
    <pubDate>Mon, 07 Mar 2016 21:13:21 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2016-03-07T21:13:21Z</dc:date>
    <item>
      <title>open formats in 64bit (from 32 bit)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/open-formats-in-64bit-from-32-bit/m-p/255084#M48712</link>
      <description>&lt;P&gt;Hi!&amp;nbsp; I am trying to open formats that were created in 32 bit, but I can figure out how to do this?!&amp;nbsp; I have the syntax that I run containing all the formats so I can work with the tables.&amp;nbsp; But since My computer upgraded, I cannot run the formats.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So, say my syntax is saved as:&amp;nbsp; H:\file\read formats.sas&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I tried using cimport....but not working correctly.&amp;nbsp; I may be doing this totally wrong.&amp;nbsp; I'm not clear on how/ where I should be creating new or temp files and what to replace...&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for your help!!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname project "H:\File";
 filename formats "H:\File\read formats.cpt";

 proc cport library=project file=formats;
 run;


libname project "H:\File";
 filename outfile "H:\file\read formats.cpt";

 proc cimport library=project file=outfile;
 run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 07 Mar 2016 20:31:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/open-formats-in-64bit-from-32-bit/m-p/255084#M48712</guid>
      <dc:creator>jenim514</dc:creator>
      <dc:date>2016-03-07T20:31:18Z</dc:date>
    </item>
    <item>
      <title>Re: open formats in 64bit (from 32 bit)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/open-formats-in-64bit-from-32-bit/m-p/255098#M48716</link>
      <description>&lt;P&gt;Your best bet is to run the code that generated the formats originally.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Next would be to run proc format with the cntlout option on a 32 bit machine that can read the formats. Then you use the created dataset with the Cntlin option on proc format to create the formats.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Other options are pretty much all going to start with the a 32 bit machine to read them.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Catalogs are generally not cross platform accessible and the formats are one of those.&lt;/P&gt;</description>
      <pubDate>Mon, 07 Mar 2016 21:13:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/open-formats-in-64bit-from-32-bit/m-p/255098#M48716</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2016-03-07T21:13:21Z</dc:date>
    </item>
    <item>
      <title>Re: open formats in 64bit (from 32 bit)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/open-formats-in-64bit-from-32-bit/m-p/255194#M48736</link>
      <description>&lt;P&gt;CIMPORT should work, but your CPORT must be done from a SAS 32 bit session.&lt;/P&gt;
&lt;P&gt;Also, you libname must point to your library where your format&amp;nbsp;catalog is stored. Is that really in directory "File"?&lt;/P&gt;</description>
      <pubDate>Tue, 08 Mar 2016 09:16:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/open-formats-in-64bit-from-32-bit/m-p/255194#M48736</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2016-03-08T09:16:41Z</dc:date>
    </item>
    <item>
      <title>Re: open formats in 64bit (from 32 bit)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/open-formats-in-64bit-from-32-bit/m-p/255201#M48738</link>
      <description>&lt;P&gt;Yes, you have hit a good examplpe of why not to use proprietary file formats. &amp;nbsp;Unfortunately there is no way to open a 32bit catalog on a 64bit install, and vice versa. &amp;nbsp;You would need to, as&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13674"&gt;@LinusH﻿&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13884"&gt;@ballardw﻿&lt;/a&gt;&amp;nbsp;have suggested, go back to the source, and resend the information in a non-proprietary format, suuch as plain text program, and then recreate that in the new bit install. &amp;nbsp;This really highlights why we should all be moving away from these formats, to plain open formats which can be read across operating systems/machines and as such can be used as a reason to keep formats and such like in text files, which can be built at startup, rather than catalogs. &amp;nbsp;I for instance have a backlog of studies which, for one reason or another, I only have catalogs containing macros and formats which are now nothing more than dea files, and programs which do not work anymore because of them, and i have no way of going back to source.&lt;/P&gt;
&lt;P&gt;Open file formats!&lt;/P&gt;</description>
      <pubDate>Tue, 08 Mar 2016 09:46:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/open-formats-in-64bit-from-32-bit/m-p/255201#M48738</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2016-03-08T09:46:58Z</dc:date>
    </item>
  </channel>
</rss>

