<?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: User sasdemo has insufficient permissions to create /‌folders/‌myfolders/‌.images. Contact your in SAS Studio</title>
    <link>https://communities.sas.com/t5/SAS-Studio/User-sasdemo-has-insufficient-permissions-to-create-folders/m-p/275292#M610</link>
    <description>&lt;P&gt;Hi Reeza,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for your help. I tried your sugestion and renamed the file so that the periods were removed and now I have a different error message which reads:&amp;nbsp;&lt;SPAN&gt;ERROR: Physical file does not exist, /folders/myfolders/Final clean dataset for Meley22315withanthro.sav. Why can it not locate this file?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;proc import&lt;BR /&gt;datafile = '/folders/myfolders/Final clean dataset for Meley22315withanthro.sav'&lt;BR /&gt;out= burum&lt;BR /&gt;dbms= sav&lt;BR /&gt;replace;&lt;BR /&gt;run;&lt;/P&gt;</description>
    <pubDate>Mon, 06 Jun 2016 03:04:29 GMT</pubDate>
    <dc:creator>mw2939</dc:creator>
    <dc:date>2016-06-06T03:04:29Z</dc:date>
    <item>
      <title>User sasdemo has insufficient permissions to create /‌folders/‌myfolders/‌.images. Contact your sy..</title>
      <link>https://communities.sas.com/t5/SAS-Studio/User-sasdemo-has-insufficient-permissions-to-create-folders/m-p/275288#M608</link>
      <description>&lt;DIV id="faultDialog_contentArea" class="dijitDialogPaneContentArea"&gt;
&lt;DIV id="faultDialog_message" title="User sasdemo has insufficient permissions to create /folders/myfolders/.images.

Contact your system administrator to resolve."&gt;I'm getting the following response when I use SAS University and I'm trying to run a simpe proc import. Any idea on what this means?" Below is my code:&lt;/DIV&gt;
&lt;DIV title="User sasdemo has insufficient permissions to create /folders/myfolders/.images.

Contact your system administrator to resolve."&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV title="User sasdemo has insufficient permissions to create /folders/myfolders/.images.

Contact your system administrator to resolve."&gt;"User sasdemo has insufficient permissions to create /‌folders/‌myfolders/‌.images. Contact your system administrator to resolve."&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;DIV id="faultDialog_actionBar" class="dijitDialogPaneActionBar"&gt;&lt;SPAN class="dijit dijitReset dijitInline sasPrimaryButton dialogActionBarButton dijitButton dijitButtonFocused dijitFocused"&gt;&lt;SPAN class="dijitReset dijitInline dijitButtonNode" data-dojo-attach-event="ondijitclick:__onClick"&gt;&lt;SPAN class="dijitReset dijitStretch dijitButtonContents" data-dojo-attach-point="titleNode,focusNode"&gt;&lt;SPAN class="dijitReset dijitInline dijitButtonText" data-dojo-attach-point="containerNode"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV class="dijitDialogPaneActionBar"&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt; &lt;STRONG&gt;import&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;datafile = '\myfolders\Final clean dataset for Meley 2.23.15 withanthro.sav'&lt;/P&gt;
&lt;P&gt;out= burum&lt;/P&gt;
&lt;P&gt;dbms= sav&lt;/P&gt;
&lt;P&gt;replace;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;;&lt;/P&gt;
&lt;/DIV&gt;</description>
      <pubDate>Mon, 06 Jun 2016 02:47:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/User-sasdemo-has-insufficient-permissions-to-create-folders/m-p/275288#M608</guid>
      <dc:creator>mw2939</dc:creator>
      <dc:date>2016-06-06T02:47:50Z</dc:date>
    </item>
    <item>
      <title>Re: User sasdemo has insufficient permissions to create /‌folders/‌myfolders/‌.images. Contact your</title>
      <link>https://communities.sas.com/t5/SAS-Studio/User-sasdemo-has-insufficient-permissions-to-create-folders/m-p/275290#M609</link>
      <description>&lt;P&gt;Your path is specified incorrectly for a unix system, which SAS University Edition is running.&lt;/P&gt;
&lt;P&gt;The slashes should be the other way, and you need a &lt;STRONG&gt;folders&lt;/STRONG&gt; in front of it as well.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The periods in the file name may also be causing issues, you may need to remove them.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc import
datafile = '/folders/myfolders/Final clean dataset for Meley 2.23.15 withanthro.sav'
out= burum
dbms= sav
replace;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Try replacing period with - instead.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc import
datafile = '/folders/myfolders/Final clean dataset for Meley 2-23-15 withanthro.sav'
out= burum
dbms= sav
replace;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 06 Jun 2016 02:55:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/User-sasdemo-has-insufficient-permissions-to-create-folders/m-p/275290#M609</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-06-06T02:55:05Z</dc:date>
    </item>
    <item>
      <title>Re: User sasdemo has insufficient permissions to create /‌folders/‌myfolders/‌.images. Contact your</title>
      <link>https://communities.sas.com/t5/SAS-Studio/User-sasdemo-has-insufficient-permissions-to-create-folders/m-p/275292#M610</link>
      <description>&lt;P&gt;Hi Reeza,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for your help. I tried your sugestion and renamed the file so that the periods were removed and now I have a different error message which reads:&amp;nbsp;&lt;SPAN&gt;ERROR: Physical file does not exist, /folders/myfolders/Final clean dataset for Meley22315withanthro.sav. Why can it not locate this file?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;proc import&lt;BR /&gt;datafile = '/folders/myfolders/Final clean dataset for Meley22315withanthro.sav'&lt;BR /&gt;out= burum&lt;BR /&gt;dbms= sav&lt;BR /&gt;replace;&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jun 2016 03:04:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/User-sasdemo-has-insufficient-permissions-to-create-folders/m-p/275292#M610</guid>
      <dc:creator>mw2939</dc:creator>
      <dc:date>2016-06-06T03:04:29Z</dc:date>
    </item>
    <item>
      <title>Re: User sasdemo has insufficient permissions to create /‌folders/‌myfolders/‌.images. Contact your</title>
      <link>https://communities.sas.com/t5/SAS-Studio/User-sasdemo-has-insufficient-permissions-to-create-folders/m-p/275293#M611</link>
      <description>&lt;P&gt;Unix file is case sensitive. Make sure the case and name matches exactly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Assuming your shared folders are set up properly, navigate to the Server Files and Folders on the left hand menu.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You should see your file. If you right click on it and choose properties, it will have the path to the file. Use that in your proc import.&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jun 2016 03:09:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/User-sasdemo-has-insufficient-permissions-to-create-folders/m-p/275293#M611</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-06-06T03:09:10Z</dc:date>
    </item>
    <item>
      <title>Re: User sasdemo has insufficient permissions to create /‌folders/‌myfolders/‌.images. Contact your</title>
      <link>https://communities.sas.com/t5/SAS-Studio/User-sasdemo-has-insufficient-permissions-to-create-folders/m-p/275294#M612</link>
      <description>Ah wonderful--I had the wrong path. Thank you so much!</description>
      <pubDate>Mon, 06 Jun 2016 03:16:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/User-sasdemo-has-insufficient-permissions-to-create-folders/m-p/275294#M612</guid>
      <dc:creator>mw2939</dc:creator>
      <dc:date>2016-06-06T03:16:33Z</dc:date>
    </item>
  </channel>
</rss>

