<?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 Uploading large files into SAS Studio ODA in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Uploading-large-files-into-SAS-Studio-ODA/m-p/778991#M248045</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I am trying to import BRFSS 2020 dataset to SAS Studio&amp;nbsp;OnDemand for Academics. A few past posts have commented that they were not able to upload the large files (whether ASCII for .XPT) to SAS Studio University Edition. The BRFSS 2020 dataset (ASCII file) I am trying to upload to SAS is 800 MB. It does not seem to upload to SAS. After more than 30-50 minutes I get timed out. Same when I try to upload the .XPT transport version that I have downloaded and unzipped from CDC BRFSS website. I thought that I have 5GB limit for SAS Studio ODA as a student. Or is the file limit still only 10MB as some have pointed out in this forum in the past? If it is only 10MB, then how would users upload large files? Thank you in advance for your help.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 07 Nov 2021 15:15:15 GMT</pubDate>
    <dc:creator>pangeabird</dc:creator>
    <dc:date>2021-11-07T15:15:15Z</dc:date>
    <item>
      <title>Uploading large files into SAS Studio ODA</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Uploading-large-files-into-SAS-Studio-ODA/m-p/778991#M248045</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I am trying to import BRFSS 2020 dataset to SAS Studio&amp;nbsp;OnDemand for Academics. A few past posts have commented that they were not able to upload the large files (whether ASCII for .XPT) to SAS Studio University Edition. The BRFSS 2020 dataset (ASCII file) I am trying to upload to SAS is 800 MB. It does not seem to upload to SAS. After more than 30-50 minutes I get timed out. Same when I try to upload the .XPT transport version that I have downloaded and unzipped from CDC BRFSS website. I thought that I have 5GB limit for SAS Studio ODA as a student. Or is the file limit still only 10MB as some have pointed out in this forum in the past? If it is only 10MB, then how would users upload large files? Thank you in advance for your help.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 07 Nov 2021 15:15:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Uploading-large-files-into-SAS-Studio-ODA/m-p/778991#M248045</guid>
      <dc:creator>pangeabird</dc:creator>
      <dc:date>2021-11-07T15:15:15Z</dc:date>
    </item>
    <item>
      <title>Re: Uploading large files into SAS Studio ODA</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Uploading-large-files-into-SAS-Studio-ODA/m-p/779000#M248053</link>
      <description>&lt;P&gt;If you are having upload issues then upload a ZIP file as that will be much smaller. Both text files and XPT files will compress to between 10 and 20 percent of the original file size.&amp;nbsp; You can use the ZIP filename engine in SAS to access the content of the ZIP file.&amp;nbsp; For the XPT file you might need to first copy it to an physical file in your WORK directory to be able to access with the XPORT libname engine.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If the file is available via a URL then try running a SAS step to copy the file from the URL to the SAS ODA server and just skip the step of downloading it to you personal computer.&amp;nbsp; Either use the URL filename engine or use PROC HTTP.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So for example if you have named brfsss.txt then compress it into a ZIP file.&amp;nbsp; Say you called that file brfsss.zip.&amp;nbsp; Then to read the file from the zip file your SAS data step could look like:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
  infile '~/brfsss.zip' zip member='brfsss.txt' ;
  input .... ;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;If you have a file named brfsss.xpt then you might need to first copy it out of the ZIP file to use it.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;filename xpt temp;
data _null_;
  infile '~/brfsss.zip' zip member='brfsss.xpt' lrecl=80 recfm=f ;
  file xpt lrecl=80 recfm=f;
  input;
  put _infile_;
run;
libname xpt xport "%sysfunc(pathname(xpt))";
proc copy inlib=xpt outlib=work;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 07 Nov 2021 17:10:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Uploading-large-files-into-SAS-Studio-ODA/m-p/779000#M248053</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2021-11-07T17:10:01Z</dc:date>
    </item>
    <item>
      <title>Re: Uploading large files into SAS Studio ODA</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Uploading-large-files-into-SAS-Studio-ODA/m-p/779002#M248054</link>
      <description>&lt;P&gt;Hello &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/405730"&gt;@pangeabird&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you are working in OnDemand for Academics (ODA) you cannot change the configuration (to increase the&amp;nbsp;maxUploadSize parameter).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But for these people that can change the default limit, I wanted to share the relevant piece of doc that tells you how to do this:&lt;BR /&gt;SAS® Viya® 3.5 Administration | 3.5&lt;BR /&gt;Configuration Properties&lt;BR /&gt;SAS Studio 5.2 (Enterprise)&lt;BR /&gt;&lt;A href="https://go.documentation.sas.com/doc/en/calcdc/3.5/calconfig/n08025sasconfiguration0admin.htm#n08569sasconfiguration0admin" target="_blank"&gt;https://go.documentation.sas.com/doc/en/calcdc/3.5/calconfig/n08025sasconfiguration0admin.htm#n08569sasconfiguration0admin&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To set a value for the maximum size of a file that can be uploaded, do the following:&lt;BR /&gt;1. Sign in to SAS Environment Manager as an administrative user&lt;BR /&gt;2. Go to [ Configuration ] &amp;gt; [ All services ] &amp;gt; [SAS Studio Viya]&lt;BR /&gt;3. Type "sas.studiov" in the search box in the right pane&lt;BR /&gt;4. Click [ Edit ] icon for the "sas.studiov" configuration&lt;BR /&gt;5. Specify a value for the maxUploadSize property.&lt;BR /&gt;6. Click [ Save ] to save the configuration&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;BR /&gt;Koen&lt;/P&gt;</description>
      <pubDate>Sun, 07 Nov 2021 18:22:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Uploading-large-files-into-SAS-Studio-ODA/m-p/779002#M248054</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2021-11-07T18:22:29Z</dc:date>
    </item>
    <item>
      <title>Re: Uploading large files into SAS Studio ODA</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Uploading-large-files-into-SAS-Studio-ODA/m-p/779144#M248116</link>
      <description>Thank you!</description>
      <pubDate>Mon, 08 Nov 2021 15:15:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Uploading-large-files-into-SAS-Studio-ODA/m-p/779144#M248116</guid>
      <dc:creator>pangeabird</dc:creator>
      <dc:date>2021-11-08T15:15:30Z</dc:date>
    </item>
    <item>
      <title>Re: Uploading large files into SAS Studio ODA</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Uploading-large-files-into-SAS-Studio-ODA/m-p/888499#M351034</link>
      <description>&lt;P&gt;Not sure who you mean by "these people".&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Are SAS ODA users stuck with upload file sizes at 1G? If so, is SAS Studio Enterprise available by subscription?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Wed, 09 Aug 2023 04:48:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Uploading-large-files-into-SAS-Studio-ODA/m-p/888499#M351034</guid>
      <dc:creator>ythum</dc:creator>
      <dc:date>2023-08-09T04:48:16Z</dc:date>
    </item>
    <item>
      <title>Re: Uploading large files into SAS Studio ODA</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Uploading-large-files-into-SAS-Studio-ODA/m-p/888546#M351048</link>
      <description>&lt;P&gt;"these people" are SAS administrators.&lt;BR /&gt;Only SAS administrators have the full-blown SAS Environment Manager and can change all system options.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SAS® Viya® 3.5 Administration&lt;BR /&gt;&lt;A href="https://go.documentation.sas.com/doc/en/calcdc/3.5/calwlcm/home.htm" target="_blank"&gt;https://go.documentation.sas.com/doc/en/calcdc/3.5/calwlcm/home.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Koen&lt;/P&gt;</description>
      <pubDate>Wed, 09 Aug 2023 11:46:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Uploading-large-files-into-SAS-Studio-ODA/m-p/888546#M351048</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2023-08-09T11:46:39Z</dc:date>
    </item>
    <item>
      <title>Re: Uploading large files into SAS Studio ODA</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Uploading-large-files-into-SAS-Studio-ODA/m-p/888591#M351062</link>
      <description>&lt;P&gt;The academic part of the name indicates it is for LEARNING, not production job work. Local installs of licensed SAS studio are controlled by the local administrators for such things and wouldn't have the file size limits unless the administrators wanted them.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The 800Mbyt BRFSS data would indicate an entire nationwide data set and such would not be typically needed for a LEARNING environment when anything needed for teaching would work with one or two state data sets.&lt;/P&gt;</description>
      <pubDate>Wed, 09 Aug 2023 15:22:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Uploading-large-files-into-SAS-Studio-ODA/m-p/888591#M351062</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2023-08-09T15:22:56Z</dc:date>
    </item>
    <item>
      <title>Re: Uploading large files into SAS Studio ODA</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Uploading-large-files-into-SAS-Studio-ODA/m-p/888614#M351076</link>
      <description>&lt;P&gt;Thanks for the response.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Not sure what the BRFSS is or why it is relevant. As for relating file size to "learning", your point is well taken, but large files do not always indicate "production work," or do they indicative "nationwide" numbers. Such wild speculations (at best) are not necessary in a response about program limits.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Exploring the limits of SAS ODA is my learning objective.&lt;/P&gt;</description>
      <pubDate>Wed, 09 Aug 2023 16:53:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Uploading-large-files-into-SAS-Studio-ODA/m-p/888614#M351076</guid>
      <dc:creator>ythum</dc:creator>
      <dc:date>2023-08-09T16:53:24Z</dc:date>
    </item>
    <item>
      <title>Re: Uploading large files into SAS Studio ODA</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Uploading-large-files-into-SAS-Studio-ODA/m-p/888618#M351077</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/446558"&gt;@ythum&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Thanks for the response.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Not sure what the BRFSS is or why it is relevant. As for relating file size to "learning", your point is well taken, but large files do not always indicate "production work," or do they indicative "nationwide" numbers. Such wild speculations (at best) are not necessary in a response about program limits.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Exploring the limits of SAS ODA is my learning objective.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;BRFSS is what this thread from 2021 is about.&lt;/P&gt;
&lt;P&gt;If you have a new question then start a new thread.&lt;/P&gt;</description>
      <pubDate>Wed, 09 Aug 2023 17:13:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Uploading-large-files-into-SAS-Studio-ODA/m-p/888618#M351077</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2023-08-09T17:13:00Z</dc:date>
    </item>
    <item>
      <title>Re: Uploading large files into SAS Studio ODA</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Uploading-large-files-into-SAS-Studio-ODA/m-p/888622#M351081</link>
      <description>Just trying to get an answer, to the topic of discussion "RE: Uploading large files into SAS Studio ODA." Forgive me for not going back to the original post IN 2021 for all of that!&lt;BR /&gt;&lt;BR /&gt;My point about large file size ^= nationwide numbers is not unreasonable.</description>
      <pubDate>Wed, 09 Aug 2023 17:48:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Uploading-large-files-into-SAS-Studio-ODA/m-p/888622#M351081</guid>
      <dc:creator>ythum</dc:creator>
      <dc:date>2023-08-09T17:48:49Z</dc:date>
    </item>
  </channel>
</rss>

