<?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: CPORT | Estimate size in Administration and Deployment</title>
    <link>https://communities.sas.com/t5/Administration-and-Deployment/CPORT-Estimate-size/m-p/666300#M19331</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/182279"&gt;@rabindrakumar&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Note:Beware of using cport, sometimes this procedure also corrupts the file.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Can't second that, as I used CPORT/CIMPORT to move a whole data warehouse from mainframe to Reliant UNIX (SINIX) and later AIX without a hitch.&lt;/P&gt;</description>
    <pubDate>Wed, 01 Jul 2020 08:26:14 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2020-07-01T08:26:14Z</dc:date>
    <item>
      <title>CPORT | Estimate size</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/CPORT-Estimate-size/m-p/665189#M19286</link>
      <description>&lt;P&gt;Hi folks,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We are currently working on a migration of our SAS servers. There is any way to estimate the total size needed to CPORT files? We did some test and in some case we have a compression of 70 or 80% of the original file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jun 2020 22:44:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/CPORT-Estimate-size/m-p/665189#M19286</guid>
      <dc:creator>MariaD</dc:creator>
      <dc:date>2020-06-25T22:44:23Z</dc:date>
    </item>
    <item>
      <title>Re: CPORT | Estimate size</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/CPORT-Estimate-size/m-p/666287#M19327</link>
      <description>&lt;P&gt;I just ran this code on University Edition:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data myfold.class1;
set sashelp.class;
length longstr $100;
longstr = name;
do i = 1 to 10000;
  output;
end;
run;

data myfold.class2 (compress=yes);
set sashelp.class;
length longstr $100;
longstr = name;
do i = 1 to 10000;
  output;
end;
run;


proc cport data=myfold.class2 file='/folders/myfolders/class.cpr';
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;class1.sas7bdat is 26.3 MB, class2.sas7bdat is 10.8 MB, class.cpr is 13.2 MB.&lt;/P&gt;
&lt;P&gt;So it seems that the CPORT procedure does a compress, but not as good as the compress of the dataset. My tests also gave proof that CPORTing a compressed or uncompressed dataset will yield the same result.&lt;/P&gt;
&lt;P&gt;Don't forget to use the compress=yes option when importing your CPORT files.&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jul 2020 07:26:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/CPORT-Estimate-size/m-p/666287#M19327</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-07-01T07:26:35Z</dc:date>
    </item>
    <item>
      <title>Re: CPORT | Estimate size</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/CPORT-Estimate-size/m-p/666288#M19328</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;The mechanism of cport and compress is different, while using cport the file binaries are changed to be compatible according to cport zip functionality whereas compress is directly applied on dataset whitout changing the file binaries.&lt;/P&gt;&lt;P&gt;This is the reason cport has a bigger file size compared to compress.&lt;/P&gt;&lt;P&gt;Note:Beware of using cport, sometimes this procedure also corrupts the file.&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jul 2020 07:37:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/CPORT-Estimate-size/m-p/666288#M19328</guid>
      <dc:creator>rabindrakumar</dc:creator>
      <dc:date>2020-07-01T07:37:11Z</dc:date>
    </item>
    <item>
      <title>Re: CPORT | Estimate size</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/CPORT-Estimate-size/m-p/666300#M19331</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/182279"&gt;@rabindrakumar&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Note:Beware of using cport, sometimes this procedure also corrupts the file.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Can't second that, as I used CPORT/CIMPORT to move a whole data warehouse from mainframe to Reliant UNIX (SINIX) and later AIX without a hitch.&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jul 2020 08:26:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/CPORT-Estimate-size/m-p/666300#M19331</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-07-01T08:26:14Z</dc:date>
    </item>
    <item>
      <title>Re: CPORT | Estimate size</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/CPORT-Estimate-size/m-p/666354#M19338</link>
      <description>&lt;P&gt;Thanks folks!&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jul 2020 12:39:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/CPORT-Estimate-size/m-p/666354#M19338</guid>
      <dc:creator>MariaD</dc:creator>
      <dc:date>2020-07-01T12:39:54Z</dc:date>
    </item>
  </channel>
</rss>

