<?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 get SASUSER library's data sets in SAS Certification</title>
    <link>https://communities.sas.com/t5/SAS-Certification/How-to-get-SASUSER-library-s-data-sets/m-p/305003#M118</link>
    <description>&lt;P&gt;You have to first modify the sample code so the datasets are generated in the correct library.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;See the discussion here.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://communities.sas.com/t5/General-SAS-Programming/SAS-Certification-program-problem/m-p/188775#M25979" target="_blank"&gt;https://communities.sas.com/t5/General-SAS-Programming/SAS-Certification-program-problem/m-p/188775#M25979&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 17 Oct 2016 08:11:52 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2016-10-17T08:11:52Z</dc:date>
    <item>
      <title>How to get SASUSER library's data sets</title>
      <link>https://communities.sas.com/t5/SAS-Certification/How-to-get-SASUSER-library-s-data-sets/m-p/304942#M113</link>
      <description>&lt;P&gt;I want to run this particular code.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data sasuser.admit2;&lt;BR /&gt;set sasuser.admit;&lt;BR /&gt;where age&amp;gt;39;&lt;BR /&gt;run;&lt;BR /&gt;proc print data=sasuser.admit2;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The above code didn't actually execute in SAS university edition because the data set sasuser.admit data set is not present in my system.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I ran the code given in the following link and executed the same&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A title="http://support.sas.com/publishing/cert/sampdata.txt" href="http://support.sas.com/publishing/cert/sampdata.txt" target="_blank" rel="nofollow noopener noreferrer"&gt;support.sas.com/publishing/cert/sampdata.txt&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;the code got executed, and it created many files in sasuser&amp;nbsp;folder in &amp;nbsp;'/folders/myfolders/', but i am not able to see any data set in the sasuser library. Its just showing SASUSER which was already there long before i executed the code given in the above link.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Among the many files created as a result of executing the above code in the link, a file name admit was also created with .DAT extension .&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i tried running the same code again.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;data sasuser.admit2;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;set sasuser.admit;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;where age&amp;gt;39;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;run;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;proc print data=sasuser.admit2;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;but it will show an error like:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="sasSource"&gt;1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;55&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;56 data sasuser.admit2;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;57 set sasuser.admit;&lt;/DIV&gt;&lt;DIV class="sasError"&gt;ERROR: File SASUSER.ADMIT.DATA does not exist.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;58 where age&amp;gt;39;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;59 run;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasError"&gt;ERROR: Write access to member SASUSER.ADMIT2.DATA is denied.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: DATA statement used (Total process time):&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;real time 0.01 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;cpu time 0.01 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;60 proc print data=sasuser.admit2;&lt;/DIV&gt;&lt;DIV class="sasError"&gt;ERROR: File SASUSER.ADMIT2.DATA does not exist.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;61 run;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&lt;SPAN&gt;Even though files are showing up in &amp;nbsp;/folders/&lt;/SPAN&gt;myfolders&lt;SPAN&gt;/ but the same files are not showing up as data set in the library section of SAS univesity edition, due to which i am not able to execute the above code. Please assist to bring data sets under SASUSER.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/13061iD00D1DFB26E11EBA/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="SASUSER error1.JPG" title="SASUSER error1.JPG" /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/13062iD0242E10FACAB41E/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="SASUSER error.JPG" title="SASUSER error.JPG" /&gt;</description>
      <pubDate>Sun, 16 Oct 2016 21:44:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Certification/How-to-get-SASUSER-library-s-data-sets/m-p/304942#M113</guid>
      <dc:creator>prashant2</dc:creator>
      <dc:date>2016-10-16T21:44:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to get SASUSER library's data sets</title>
      <link>https://communities.sas.com/t5/SAS-Certification/How-to-get-SASUSER-library-s-data-sets/m-p/304943#M114</link>
      <description>&lt;P&gt;Contact training@sas.com for the code for SAS UE.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 16 Oct 2016 21:54:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Certification/How-to-get-SASUSER-library-s-data-sets/m-p/304943#M114</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-10-16T21:54:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to get SASUSER library's data sets</title>
      <link>https://communities.sas.com/t5/SAS-Certification/How-to-get-SASUSER-library-s-data-sets/m-p/304984#M115</link>
      <description>&lt;P&gt;- On SAS UE, the SASUSER library is read-only. You can't put anything there. Even if you already had the dataset there, your step would not work.&lt;/P&gt;
&lt;P&gt;- to use the files in /folders/myfolder, you need to define a libname for that location:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname mylib '/folders/myfolder';&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;You can then use library mylib to reference your practice datasets.&lt;/P&gt;</description>
      <pubDate>Mon, 17 Oct 2016 06:46:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Certification/How-to-get-SASUSER-library-s-data-sets/m-p/304984#M115</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2016-10-17T06:46:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to get SASUSER library's data sets</title>
      <link>https://communities.sas.com/t5/SAS-Certification/How-to-get-SASUSER-library-s-data-sets/m-p/304996#M116</link>
      <description>&lt;P&gt;Thank you very much for your response.I did as you said and wrote the following code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;libname mylib '/folders/myfolders/mylib1';&lt;BR /&gt;data mylib.admit2;&lt;BR /&gt;set mylib.admit;&lt;BR /&gt;where age&amp;lt;39;&lt;BR /&gt;run;&lt;BR /&gt;proc print data=mylib.admit2;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, i am still receiving the error in the log window "&lt;SPAN&gt; ERROR: File MYLIB.ADMIT.DATA does not exist."&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;the data set is in the folder mylib1 but it says the data set does not exist, and the current data set 'admit' only have observations, no attributes are assigned to it. What is the way out to access this data set without errors&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Oct 2016 07:59:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Certification/How-to-get-SASUSER-library-s-data-sets/m-p/304996#M116</guid>
      <dc:creator>prashant2</dc:creator>
      <dc:date>2016-10-17T07:59:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to get SASUSER library's data sets</title>
      <link>https://communities.sas.com/t5/SAS-Certification/How-to-get-SASUSER-library-s-data-sets/m-p/305001#M117</link>
      <description>&lt;P&gt;Since you are using SAS UE, take a look at the shared folder with the Windows explorer to determine the path leading to those files.&lt;/P&gt;
&lt;P&gt;Then use the internal UNIX equivalent for the libname.&lt;/P&gt;</description>
      <pubDate>Mon, 17 Oct 2016 08:11:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Certification/How-to-get-SASUSER-library-s-data-sets/m-p/305001#M117</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2016-10-17T08:11:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to get SASUSER library's data sets</title>
      <link>https://communities.sas.com/t5/SAS-Certification/How-to-get-SASUSER-library-s-data-sets/m-p/305003#M118</link>
      <description>&lt;P&gt;You have to first modify the sample code so the datasets are generated in the correct library.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;See the discussion here.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://communities.sas.com/t5/General-SAS-Programming/SAS-Certification-program-problem/m-p/188775#M25979" target="_blank"&gt;https://communities.sas.com/t5/General-SAS-Programming/SAS-Certification-program-problem/m-p/188775#M25979&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Oct 2016 08:11:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Certification/How-to-get-SASUSER-library-s-data-sets/m-p/305003#M118</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-10-17T08:11:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to get SASUSER library's data sets</title>
      <link>https://communities.sas.com/t5/SAS-Certification/How-to-get-SASUSER-library-s-data-sets/m-p/306631#M124</link>
      <description>&lt;P&gt;Hi:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; The bottom line is that you cannot use the default SASUSER library with the program that makes the Prep Guide data -- because, by default, the SAS UE users and SAS OnDemand for Academic users and some EG users do NOT have write access to the default SASUSER location. &lt;U&gt;&lt;STRONG&gt;However&lt;/STRONG&gt;&lt;/U&gt;, as indicated in this web site (which has an &lt;U&gt;&lt;STRONG&gt;updated&lt;/STRONG&gt; &lt;/U&gt;version of the Prep Guide program for UE users), you can make the datasets and still use a reference to SASUSER. Please note that you do &lt;U&gt;&lt;STRONG&gt;NOT&lt;/STRONG&gt; &lt;/U&gt;have to edit the program, but you do have to follow ALL of the instructions you will find here:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/publishing/cert/basecertguide3.html" target="_blank"&gt;http://support.sas.com/publishing/cert/basecertguide3.html&lt;/A&gt; &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Please play particular attention to step #3, which explains how you "redirect" your default SASUSER library to a new location to which you do have write access. In the #3 step, a suggestion is made that you make a folder called "certprep" and then you can redirect your SASUSER reference using this LIBNAME statement:&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;libname sasuser "/folders/myfolders/certprep";&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; As is says in step #3, you must use the filename of the new directory. In their examples, they use the name &lt;STRONG&gt;certprep&lt;/STRONG&gt;. If you use another filename, substitute the name that you created for &lt;STRONG&gt;certprep &lt;/STRONG&gt;in the above LIBNAME statement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Once you follow the instructions as shown on the web site, you only need to follow the link on the above web page to get the program and then run the program.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Because the LIBNAME statement has redirected SASUSER to a different location where you have WRITE access, the programs in the Base and Advanced Prep Guides (which use the same data files) should now work for you.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Hope this helps clarify that you do &lt;U&gt;&lt;STRONG&gt;NOT&lt;/STRONG&gt; &lt;/U&gt;need to change the program the above web site has the updated program; you do &lt;U&gt;&lt;STRONG&gt;not&lt;/STRONG&gt; &lt;/U&gt;need to write to training@sas.com as you did in the past because the above web site has the updated program and instructions; and, perhaps you detect the theme of this posting,&amp;nbsp; the &lt;U&gt;&lt;STRONG&gt;web site above&lt;/STRONG&gt;&lt;/U&gt; contains the instructions that you need to follow and the program you need to run to work with the Base and Advanced Prep Guides.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;cynthia&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 23 Oct 2016 16:49:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Certification/How-to-get-SASUSER-library-s-data-sets/m-p/306631#M124</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2016-10-23T16:49:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to get SASUSER library's data sets</title>
      <link>https://communities.sas.com/t5/SAS-Certification/How-to-get-SASUSER-library-s-data-sets/m-p/353562#M217</link>
      <description>&lt;P&gt;I have a similar error when trying to do the base cert prep guide practice using UE. followed the above instructions, Now I've setup the data without errors (not sure if the entire practice set is actually successfully setup though.), created a new folder "certprep" under "myfolder" and re-directed the library to certprep (libname sasuser "/folders/myfolders/certprep";). but when trying the first practice in chapter 2 i'm still getting the error saying the "Mylib does not exist". Not sure what went wrong and how to fix. this is the log:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;BR /&gt;61&lt;BR /&gt;62&lt;BR /&gt;63&lt;BR /&gt;64&lt;BR /&gt;65 libname MYLIB 'SAS-data-library';&lt;BR /&gt;NOTE: Libref MYLIB refers to the same physical library as CERTPREP.&lt;BR /&gt;WARNING: Library MYLIB does not exist.&lt;BR /&gt;NOTE: Libref MYLIB was successfully assigned as follows:&lt;BR /&gt;Engine: V9&lt;BR /&gt;Physical Name: /opt/sasinside/SASConfig/Lev1/SASApp/SAS-data-library&lt;BR /&gt;66 data MYLIB.admit;&lt;BR /&gt;67 set sasuser.admit;&lt;BR /&gt;68 if ActLevel="HIGH";&lt;BR /&gt;69 run;&lt;BR /&gt;&lt;BR /&gt;ERROR: Library MYLIB does not exist.&lt;BR /&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;real time 0.02 seconds&lt;BR /&gt;cpu time 0.01 seconds&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;70 proc print data=mylib.admit;&lt;BR /&gt;ERROR: File MYLIB.ADMIT.DATA does not exist.&lt;BR /&gt;71 run;&lt;BR /&gt;&lt;BR /&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;BR /&gt;NOTE: PROCEDURE PRINT used (Total process time):&lt;BR /&gt;real time 0.00 seconds&lt;BR /&gt;cpu time 0.00 seconds&lt;BR /&gt;&lt;BR /&gt;72&lt;BR /&gt;73 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;BR /&gt;86&lt;/P&gt;</description>
      <pubDate>Wed, 26 Apr 2017 05:52:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Certification/How-to-get-SASUSER-library-s-data-sets/m-p/353562#M217</guid>
      <dc:creator>thenewlearner</dc:creator>
      <dc:date>2017-04-26T05:52:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to get SASUSER library's data sets</title>
      <link>https://communities.sas.com/t5/SAS-Certification/How-to-get-SASUSER-library-s-data-sets/m-p/353564#M218</link>
      <description>&lt;P&gt;Libname statement doesn't have a path listed....&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Apr 2017 05:58:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Certification/How-to-get-SASUSER-library-s-data-sets/m-p/353564#M218</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-04-26T05:58:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to get SASUSER library's data sets</title>
      <link>https://communities.sas.com/t5/SAS-Certification/How-to-get-SASUSER-library-s-data-sets/m-p/353568#M219</link>
      <description>&lt;P&gt;oh, newbie mistake LOL.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks Reeza.&lt;/P&gt;</description>
      <pubDate>Wed, 26 Apr 2017 06:12:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Certification/How-to-get-SASUSER-library-s-data-sets/m-p/353568#M219</guid>
      <dc:creator>thenewlearner</dc:creator>
      <dc:date>2017-04-26T06:12:04Z</dc:date>
    </item>
  </channel>
</rss>

