<?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: How to solve ERROR: Insufficient authorization to access /opt/sasinside/SASConfig/Lev1/SASApp/ in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/How-to-solve-ERROR-Insufficient-authorization-to-access-opt/m-p/731653#M28443</link>
    <description>&lt;P&gt;Hello Karen,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As mentioned by others previously, your 'outfile=' path is wrong (it does not exist).&lt;/P&gt;
&lt;P&gt;You can also search / screen this communities site for the same error message (the one you encounter). Several (students) before you have stumbled upon this 'issue'.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Anyway, not only your 'outfile=' option is wrong, also the 'data=' option is wrong!&lt;/P&gt;
&lt;P&gt;SAS expects a libname.datasetname specification after 'data=' or just datasetname if the libname equals WORK.&lt;/P&gt;
&lt;P&gt;Once your 'outfile=' problem is solved, you will get another error, something like:&lt;/P&gt;
&lt;P&gt;ERROR: Libref acc_2012 is not assigned.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What you need is (probably):&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;proc export data=work.acc_2012 outfile='&lt;EM&gt;&amp;lt;&amp;lt;valid path&amp;gt;&amp;gt;&lt;/EM&gt;/acc_2012.dta; run;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Do not forget to terminate your statement with a semicolon (;) and to terminate your proc export with a 'run;' statement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers,&lt;/P&gt;
&lt;P&gt;Koen&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 06 Apr 2021 17:08:34 GMT</pubDate>
    <dc:creator>sbxkoenk</dc:creator>
    <dc:date>2021-04-06T17:08:34Z</dc:date>
    <item>
      <title>How to solve ERROR: Insufficient authorization to access /opt/sasinside/SASConfig/Lev1/SASApp/</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-solve-ERROR-Insufficient-authorization-to-access-opt/m-p/731627#M28437</link>
      <description>&lt;P&gt;I want to export data from a .sas7bdat file to a .dta file (STATA extension) with the SAS University Edition.&lt;/P&gt;&lt;P&gt;This is my command:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;proc export data=acc_2012.sas7bdat outfile= "C:\Gebruikers\KaHermans\SASUniversityEdition\myfolders\acc_2012.dta"&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;but I received the following error:&amp;nbsp;Insufficient authorization to access /opt/sasinside/SASConfig/Lev1/SASApp/&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The 'myfolders' folder is a shared folder that I created in the setup process (as I use VM) so that is not the problem I guess.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could someone help me why I get this error and how I can solve it?&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;Karen&lt;/P&gt;</description>
      <pubDate>Tue, 06 Apr 2021 15:58:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-solve-ERROR-Insufficient-authorization-to-access-opt/m-p/731627#M28437</guid>
      <dc:creator>KaHermans</dc:creator>
      <dc:date>2021-04-06T15:58:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to solve ERROR: Insufficient authorization to access /opt/sasinside/SASConfig/Lev1/SASApp/</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-solve-ERROR-Insufficient-authorization-to-access-opt/m-p/731629#M28438</link>
      <description>&lt;P&gt;Paths from University Edition start at the root of the virtual machine file paths. Not at the windows disk drive. So when you provide an invalid path SAS starts at the "where SAS is executing folder" . The folders where SAS is installed are not set up to have write access by users so you get that particular type of error related to permissions.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;outfile= "\folders\myfolders\acc_2012.dta"&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You will have to then use system tools to navigate to where that may be.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 06 Apr 2021 16:06:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-solve-ERROR-Insufficient-authorization-to-access-opt/m-p/731629#M28438</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2021-04-06T16:06:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to solve ERROR: Insufficient authorization to access /opt/sasinside/SASConfig/Lev1/SASApp/</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-solve-ERROR-Insufficient-authorization-to-access-opt/m-p/731631#M28439</link>
      <description>SAS UE doesn't have access to your C drive, you can write the data set back to the myfolders location using the file path as follows.&lt;BR /&gt;&lt;BR /&gt; outfile= "/folders/myfolders/acc_2012.dta"&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 06 Apr 2021 16:07:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-solve-ERROR-Insufficient-authorization-to-access-opt/m-p/731631#M28439</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-04-06T16:07:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to solve ERROR: Insufficient authorization to access /opt/sasinside/SASConfig/Lev1/SASApp/</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-solve-ERROR-Insufficient-authorization-to-access-opt/m-p/731653#M28443</link>
      <description>&lt;P&gt;Hello Karen,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As mentioned by others previously, your 'outfile=' path is wrong (it does not exist).&lt;/P&gt;
&lt;P&gt;You can also search / screen this communities site for the same error message (the one you encounter). Several (students) before you have stumbled upon this 'issue'.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Anyway, not only your 'outfile=' option is wrong, also the 'data=' option is wrong!&lt;/P&gt;
&lt;P&gt;SAS expects a libname.datasetname specification after 'data=' or just datasetname if the libname equals WORK.&lt;/P&gt;
&lt;P&gt;Once your 'outfile=' problem is solved, you will get another error, something like:&lt;/P&gt;
&lt;P&gt;ERROR: Libref acc_2012 is not assigned.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What you need is (probably):&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;proc export data=work.acc_2012 outfile='&lt;EM&gt;&amp;lt;&amp;lt;valid path&amp;gt;&amp;gt;&lt;/EM&gt;/acc_2012.dta; run;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Do not forget to terminate your statement with a semicolon (;) and to terminate your proc export with a 'run;' statement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers,&lt;/P&gt;
&lt;P&gt;Koen&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 06 Apr 2021 17:08:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-solve-ERROR-Insufficient-authorization-to-access-opt/m-p/731653#M28443</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2021-04-06T17:08:34Z</dc:date>
    </item>
  </channel>
</rss>

