I'm using v9.4 on a 32-bit Windows machine and I have many fsedit screens and a few AF catalogs. We are upgrading our computers to 64 bit and these catalogs will not work in the 64-bit operating system, even though it is still SAS v9.4. The catalogs are in a library named "Fish" and I attempted to create a transport file using the CPORT procedure: filename trans 'c:\fish\first_try.cpt'; proc cport lib=transfer file=trans memtype=catalog; run; It seemed to work correctly. The log looked good and it created a large file in the FISH directory. I transfered this file (first_try.cpt) to the FISH directory on a 64-bit operating system and used the CIMPORT procedure to import: filename trans 'c:\fish\first_try.cpt'; proc cimport infile=trans lib=fish; run; However, this is where it seems to break down. I get the message: "File Fish.XXXXX.CATALOG was created for a different operating system. Unable to open catalog Fish.XXXXX" Can anyone advise me on the proper way to convert these types of catalogs from 32-bit to 64-bit? Thanks, Tim
... View more