<?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: Help with saving large sas dataset in permanent library in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Help-with-saving-large-sas-dataset-in-permanent-library/m-p/686886#M79574</link>
    <description>&lt;P&gt;If you are writing this from your PC to a network drive then you will be limited by the network connection speed.&lt;/P&gt;
&lt;P&gt;Compressing the dataset so it takes up less space may help:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data dl.course_enrl_detail (compress = yes);
set course_enrl_detail;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Sat, 26 Sep 2020 03:58:31 GMT</pubDate>
    <dc:creator>SASKiwi</dc:creator>
    <dc:date>2020-09-26T03:58:31Z</dc:date>
    <item>
      <title>Help with saving large sas dataset in permanent library</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Help-with-saving-large-sas-dataset-in-permanent-library/m-p/686885#M79573</link>
      <description>&lt;P&gt;I created a sas dataset which has 9347777 rows and 37 columns and want to save it in a permanent library on my organization's network drive so that I can use it later in other programs. Here is the sas code. Looks like it takes forever to run. Is there a more efficient way to do this?&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data dl.course_enrl_detail;
set course_enrl_detail;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 26 Sep 2020 03:54:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Help-with-saving-large-sas-dataset-in-permanent-library/m-p/686885#M79573</guid>
      <dc:creator>xliu1</dc:creator>
      <dc:date>2020-09-26T03:54:15Z</dc:date>
    </item>
    <item>
      <title>Re: Help with saving large sas dataset in permanent library</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Help-with-saving-large-sas-dataset-in-permanent-library/m-p/686886#M79574</link>
      <description>&lt;P&gt;If you are writing this from your PC to a network drive then you will be limited by the network connection speed.&lt;/P&gt;
&lt;P&gt;Compressing the dataset so it takes up less space may help:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data dl.course_enrl_detail (compress = yes);
set course_enrl_detail;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 26 Sep 2020 03:58:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Help-with-saving-large-sas-dataset-in-permanent-library/m-p/686886#M79574</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2020-09-26T03:58:31Z</dc:date>
    </item>
    <item>
      <title>Re: Help with saving large sas dataset in permanent library</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Help-with-saving-large-sas-dataset-in-permanent-library/m-p/686925#M79575</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/317497"&gt;@xliu1&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I created a sas dataset which has 9347777 rows and 37 columns and want to save it in a permanent library on my organization's network drive so that I can use it later in other programs. Here is the sas code. Looks like it takes forever to run. Is there a more efficient way to do this?&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data dl.course_enrl_detail;
set course_enrl_detail;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;The data step also processes each record as if you are going to do some data manipulation.&lt;/P&gt;
&lt;P&gt;If the idea is just to copy the data you might try either Proc Copy or Proc Datasets with the Copy option.&lt;/P&gt;</description>
      <pubDate>Sat, 26 Sep 2020 14:00:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Help-with-saving-large-sas-dataset-in-permanent-library/m-p/686925#M79575</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2020-09-26T14:00:31Z</dc:date>
    </item>
    <item>
      <title>Re: Help with saving large sas dataset in permanent library</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Help-with-saving-large-sas-dataset-in-permanent-library/m-p/686949#M79578</link>
      <description>&lt;P&gt;Thanks for suggestion! I tried proc copy with compress=yes statement and save the data on my desktop, it take 27 seconds.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname DL1 'C:\DISTANCE LEARNING DASHBOARD';
OPTIONS COMPRESS=YES;
PROC COPY IN=WORK OUT=DL1 NOCLONE;
SELECT COURSE_ENRL_DETAIL;
RUN; &lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 26 Sep 2020 18:56:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Help-with-saving-large-sas-dataset-in-permanent-library/m-p/686949#M79578</guid>
      <dc:creator>xliu1</dc:creator>
      <dc:date>2020-09-26T18:56:31Z</dc:date>
    </item>
  </channel>
</rss>

