<?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: Unable to upload files to SAS drive/Visual analytics/Data explorer in SAS Software for Learning Community</title>
    <link>https://communities.sas.com/t5/SAS-Software-for-Learning/Unable-to-upload-files-to-SAS-drive-Visual-analytics-Data/m-p/828847#M595</link>
    <description>&lt;P&gt;Sorry, data upload capability is not currently available in SAS Viya for Learners.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you are associated with a University, please contact &lt;A href="mailto:academic@sas.com" target="_blank"&gt;academic@sas.com&lt;/A&gt;&amp;nbsp;to discuss.&lt;/P&gt;</description>
    <pubDate>Tue, 16 Aug 2022 13:56:47 GMT</pubDate>
    <dc:creator>tom_grant</dc:creator>
    <dc:date>2022-08-16T13:56:47Z</dc:date>
    <item>
      <title>Unable to upload files to SAS drive/Visual analytics/Data explorer</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/Unable-to-upload-files-to-SAS-drive-Visual-analytics-Data/m-p/828844#M594</link>
      <description>&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;I am trying to upload a CSV file to build models afterwards on SAS Viya for learners. I cannot seem to upload anything onto SAS drive or visual analytics or Data explorer. In Visual analytics or Data explorer I simply don't have a tab to import data and on drive when I drag my file into a folder I created in "My folders", It presents an error message "Action failed. &lt;SPAN&gt;The Upload action is not supported.&lt;/SPAN&gt;". I used Firefox then when discussing on the SAS chat we tried on Chrome but still no success.&lt;/P&gt;&lt;P&gt;I also have in Model Studio an error "An error occured, please contact system administrator (details:) line: 0". I guess it could be correlated.&lt;/P&gt;&lt;P&gt;Is there something I can do to resolve this issue ?&lt;/P&gt;&lt;P&gt;Information and screenshots:&lt;/P&gt;&lt;P&gt;Operating system: Ubuntu 20.04.4&lt;/P&gt;&lt;P&gt;Navigators: Firefox &amp;amp; Chrome&lt;/P&gt;&lt;P&gt;Viya for learners&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot from 2022-08-16 15-30-12.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/74465i21364904C7850EE4/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screenshot from 2022-08-16 15-30-12.png" alt="Screenshot from 2022-08-16 15-30-12.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot from 2022-08-16 15-29-35.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/74464i675836E555492804/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screenshot from 2022-08-16 15-29-35.png" alt="Screenshot from 2022-08-16 15-29-35.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Thank you for your help. Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Aug 2022 13:31:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/Unable-to-upload-files-to-SAS-drive-Visual-analytics-Data/m-p/828844#M594</guid>
      <dc:creator>cyrils</dc:creator>
      <dc:date>2022-08-16T13:31:06Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to upload files to SAS drive/Visual analytics/Data explorer</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/Unable-to-upload-files-to-SAS-drive-Visual-analytics-Data/m-p/828847#M595</link>
      <description>&lt;P&gt;Sorry, data upload capability is not currently available in SAS Viya for Learners.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you are associated with a University, please contact &lt;A href="mailto:academic@sas.com" target="_blank"&gt;academic@sas.com&lt;/A&gt;&amp;nbsp;to discuss.&lt;/P&gt;</description>
      <pubDate>Tue, 16 Aug 2022 13:56:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/Unable-to-upload-files-to-SAS-drive-Visual-analytics-Data/m-p/828847#M595</guid>
      <dc:creator>tom_grant</dc:creator>
      <dc:date>2022-08-16T13:56:47Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to upload files to SAS drive/Visual analytics/Data explorer</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/Unable-to-upload-files-to-SAS-drive-Visual-analytics-Data/m-p/829173#M596</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;With some help, I managed to upload csv data using SAS Studio V. For those with the same issue :&lt;/P&gt;&lt;P&gt;1. new SAS program&lt;/P&gt;&lt;P&gt;2. use this code:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;data namefordataset;
infile datalines delimiter=',';
/* replace variable 1-&amp;gt;n by the variable names with $ after for character variables */
input variable1 $ variable 2 $ ... $ variable n $;
datalines;
/* copy/paste csv content */
;
run;
/*replace userid by your login userid (email adress) */
libname test '/shared/home/userid/casuser';
proc copy in=work out=test;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;and run program.&lt;/P&gt;&lt;P&gt;3. When creating new project in Model Studio, for data go in data source tab, then search for casuser(your email) then your dataset. right click &amp;gt; load then choose the file created and confirm.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;</description>
      <pubDate>Thu, 18 Aug 2022 11:20:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/Unable-to-upload-files-to-SAS-drive-Visual-analytics-Data/m-p/829173#M596</guid>
      <dc:creator>cyrils</dc:creator>
      <dc:date>2022-08-18T11:20:38Z</dc:date>
    </item>
  </channel>
</rss>

