<?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: Issue with spde files and data migration in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Issue-with-spde-files-and-data-migration/m-p/545988#M151129</link>
    <description>&lt;P&gt;Can you just use the fact that you have SAS/Connect to move the files directly from Windows to Unix?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname IN spde .... ;

signon .... ;
rsubmit;
  libname OUT spde .... ;
  proc upload inlib=IN outlib=OUT; 
  run;
endrsubmit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Mon, 25 Mar 2019 22:48:06 GMT</pubDate>
    <dc:creator>Tom</dc:creator>
    <dc:date>2019-03-25T22:48:06Z</dc:date>
    <item>
      <title>Issue with spde files and data migration</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Issue-with-spde-files-and-data-migration/m-p/545970#M151123</link>
      <description>&lt;P&gt;We are moving from a Windows based SAS grid to a Linux based one in the next few months. At the moment we store all our SAS datasets as spde files because of their size. However the SAS program we have been given by the SAS Institute, cannot move spde files and they have advised us to uncompress all the datasets before migration. Is there a way to do this decompression in bulk? At the moment I can read in one dataset at a time then output it as a normal SAS dataset, migrate it across to the new grid, then recompress it there. We've estimated it will take a staff member 2 weeks full-time to do this. If we could do it in bulk it would greatly reduce our timeframes.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've attached the migration code for reference.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For info we have gone from SAS EG version 7.15 64 bit, to 7.15 32 bit for Linux.&lt;/P&gt;</description>
      <pubDate>Mon, 25 Mar 2019 21:44:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Issue-with-spde-files-and-data-migration/m-p/545970#M151123</guid>
      <dc:creator>AM5</dc:creator>
      <dc:date>2019-03-25T21:44:38Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with spde files and data migration</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Issue-with-spde-files-and-data-migration/m-p/545979#M151126</link>
      <description>&lt;P&gt;As of the latest maintenance version, SAS can use &lt;A class="ng-scope" tabindex="0" href="https://documentation.sas.com/?docsetId=engspde&amp;amp;docsetTarget=p0q85acphllz0yn15n6yz743z6lz.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en#n0gjiinup8z6ekn1mzox5fe64236" data-docset-id="engspde" data-docset-version="9.4" data-original-href="#n0gjiinup8z6ekn1mzox5fe64236"&gt;Cross-Environment Data Access&lt;/A&gt;&amp;nbsp;(CEDA) to read SPDE files.&lt;/P&gt;
&lt;P&gt;See here:&amp;nbsp;&lt;A href="https://documentation.sas.com/?docsetId=lrcon&amp;amp;docsetTarget=n0oj2nagtyy32yn17pj01t6vytaw.htm&amp;amp;docsetVersion=9.4" target="_self"&gt;https://documentation.sas.com/?docsetId=lrcon&amp;amp;docsetTarget=n0oj2nagtyy32yn17pj01t6vytaw.htm&amp;amp;docsetVersion=9.4&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;The distributed paths of a grid might be an issue, I don't know.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am unsure if &lt;SPAN&gt;Remote Library Services (RLS) is still unsupported in that release for SPDE data.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;You could check this, as it would be a good alternative since you have the two sessions talking via SAS/Connect.&lt;/P&gt;
&lt;P&gt;If it is, you could use proc copy directly. RLS is slow though.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Another option is proc cport where you can copy a whole library in one go. Again, distributed paths may be an issue. And file size...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Mar 2019 22:35:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Issue-with-spde-files-and-data-migration/m-p/545979#M151126</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2019-03-25T22:35:03Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with spde files and data migration</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Issue-with-spde-files-and-data-migration/m-p/545984#M151127</link>
      <description>&lt;P&gt;&lt;EM&gt;&amp;gt; Is there a way to do this decompression in bulk? At the moment I can read in one dataset at a time then output it as a normal SAS dataset&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Can you use PROC COPY on the full library? To decompress a data set generated by PROC COPY, use the COMPRESS=NO system option before the PROC COPY statement with the NOCLONE option.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Mar 2019 22:41:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Issue-with-spde-files-and-data-migration/m-p/545984#M151127</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2019-03-25T22:41:55Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with spde files and data migration</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Issue-with-spde-files-and-data-migration/m-p/545988#M151129</link>
      <description>&lt;P&gt;Can you just use the fact that you have SAS/Connect to move the files directly from Windows to Unix?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname IN spde .... ;

signon .... ;
rsubmit;
  libname OUT spde .... ;
  proc upload inlib=IN outlib=OUT; 
  run;
endrsubmit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 25 Mar 2019 22:48:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Issue-with-spde-files-and-data-migration/m-p/545988#M151129</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-03-25T22:48:06Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with spde files and data migration</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Issue-with-spde-files-and-data-migration/m-p/546026#M151140</link>
      <description>&lt;P&gt;Thanks, this worked perfectly!&lt;/P&gt;</description>
      <pubDate>Tue, 26 Mar 2019 04:52:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Issue-with-spde-files-and-data-migration/m-p/546026#M151140</guid>
      <dc:creator>AM5</dc:creator>
      <dc:date>2019-03-26T04:52:37Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with spde files and data migration</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Issue-with-spde-files-and-data-migration/m-p/546029#M151142</link>
      <description>&lt;P&gt;You are losing the timestamps with proc upload.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Mar 2019 05:00:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Issue-with-spde-files-and-data-migration/m-p/546029#M151142</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2019-03-26T05:00:05Z</dc:date>
    </item>
  </channel>
</rss>

