<?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: Moving SAS datasets from Windows environment to a Unix one in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Moving-SAS-datasets-from-Windows-environment-to-a-Unix-one/m-p/527618#M143876</link>
    <description>&lt;P&gt;You can use the &lt;A href="https://documentation.sas.com/?docsetId=lestmtsglobal&amp;amp;docsetTarget=n1nk65k2vsfmxfn1wu17fntzszbp.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en" target="_self"&gt;OUTREP &lt;/A&gt;option to create them before a simple FTP binary transfer; this way they'll be in the native unix format.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 16 Jan 2019 03:30:45 GMT</pubDate>
    <dc:creator>ChrisNZ</dc:creator>
    <dc:date>2019-01-16T03:30:45Z</dc:date>
    <item>
      <title>Moving SAS datasets from Windows environment to a Unix one</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Moving-SAS-datasets-from-Windows-environment-to-a-Unix-one/m-p/527428#M143781</link>
      <description>&lt;P&gt;I have some sas datasets on my local machine that i downloaded from the sas website. I believe these datasets are in a Windows format. I want to be able to use a FTP program to drop them onto a server that's in Unix. So far these files can't be open and I believe its because the datasets are only available in Windows. Does any body have any suggestions on how to resolve this issue. Much appreciated!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jan 2019 18:33:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Moving-SAS-datasets-from-Windows-environment-to-a-Unix-one/m-p/527428#M143781</guid>
      <dc:creator>juanvenegas</dc:creator>
      <dc:date>2019-01-15T18:33:25Z</dc:date>
    </item>
    <item>
      <title>Re: Moving SAS datasets from Windows environment to a Unix one</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Moving-SAS-datasets-from-Windows-environment-to-a-Unix-one/m-p/527452#M143791</link>
      <description>&lt;P&gt;Proc Cport from Windows to create a transport file, move the file, then use Proc Cimport on the Unix system to create native Unix version data set. You can do this for an entire SAS library&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or Proc Copy xport engine librname, move the resulting file, the read back to the other system with Proc copy and xport engine libname.&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jan 2019 18:59:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Moving-SAS-datasets-from-Windows-environment-to-a-Unix-one/m-p/527452#M143791</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-01-15T18:59:19Z</dc:date>
    </item>
    <item>
      <title>Re: Moving SAS datasets from Windows environment to a Unix one</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Moving-SAS-datasets-from-Windows-environment-to-a-Unix-one/m-p/527456#M143794</link>
      <description>&lt;P&gt;To move SAS datasets between different operating systems one way is to PROC CPORT them from the source OS SAS and PROC CIMPORT them in the target OS SAS.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jan 2019 19:01:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Moving-SAS-datasets-from-Windows-environment-to-a-Unix-one/m-p/527456#M143794</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2019-01-15T19:01:50Z</dc:date>
    </item>
    <item>
      <title>Re: Moving SAS datasets from Windows environment to a Unix one</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Moving-SAS-datasets-from-Windows-environment-to-a-Unix-one/m-p/527466#M143801</link>
      <description>&lt;P&gt;Since version 7 (which nobody used, but that is when they changed the file format) SAS datasets can be ported AS IS between Windows and Unix.&amp;nbsp; Make sure to transfer them as BINARY files if you are using FTP.&amp;nbsp; The extension on Version 7 format SAS datasets is sas7bdat .&lt;/P&gt;
&lt;P&gt;&lt;A href="https://go.documentation.sas.com/?docsetId=lrcon&amp;amp;docsetTarget=n0oj2nagtyy32yn17pj01t6vytaw.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en" target="_blank"&gt;https://go.documentation.sas.com/?docsetId=lrcon&amp;amp;docsetTarget=n0oj2nagtyy32yn17pj01t6vytaw.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Once you have access to them on Unix you might want to recreate them using the native engine for your version of SAS to make using them faster.&amp;nbsp; SAS has some migration utilities, but really you just need PROC COPY.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If the files are version 6 (or older) then you will need to convert them before copying.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If the files are CATALOGS instead of datasets then you will need to convert them before copying.&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jan 2019 19:12:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Moving-SAS-datasets-from-Windows-environment-to-a-Unix-one/m-p/527466#M143801</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-01-15T19:12:52Z</dc:date>
    </item>
    <item>
      <title>Re: Moving SAS datasets from Windows environment to a Unix one</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Moving-SAS-datasets-from-Windows-environment-to-a-Unix-one/m-p/527553#M143834</link>
      <description>&lt;P&gt;check/modify the permissions on the Unix side to ensure that you/sas has sufficient rights to open the datasets&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jan 2019 23:11:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Moving-SAS-datasets-from-Windows-environment-to-a-Unix-one/m-p/527553#M143834</guid>
      <dc:creator>34reqrwe</dc:creator>
      <dc:date>2019-01-15T23:11:04Z</dc:date>
    </item>
    <item>
      <title>Re: Moving SAS datasets from Windows environment to a Unix one</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Moving-SAS-datasets-from-Windows-environment-to-a-Unix-one/m-p/527618#M143876</link>
      <description>&lt;P&gt;You can use the &lt;A href="https://documentation.sas.com/?docsetId=lestmtsglobal&amp;amp;docsetTarget=n1nk65k2vsfmxfn1wu17fntzszbp.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en" target="_self"&gt;OUTREP &lt;/A&gt;option to create them before a simple FTP binary transfer; this way they'll be in the native unix format.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Jan 2019 03:30:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Moving-SAS-datasets-from-Windows-environment-to-a-Unix-one/m-p/527618#M143876</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2019-01-16T03:30:45Z</dc:date>
    </item>
  </channel>
</rss>

