<?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: problem to access data in my SAS training exam in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/problem-to-access-data-in-my-SAS-training-exam/m-p/762825#M241561</link>
    <description>&lt;P&gt;&lt;FONT&gt;&lt;FONT&gt;Salut, je changed but I have the same error&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;SPAN&gt;data results.output04;&lt;BR /&gt;set cert.input04;&lt;BR /&gt;length var3 $ 5;&lt;BR /&gt;var1=ceil(var1);&lt;BR /&gt;var2=ceil(var2);&lt;BR /&gt;var3=var1*var2;&lt;BR /&gt;var20=sum(of var12-var19);&lt;BR /&gt;run;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;SPAN&gt;ERROR: File CERT.INPUT04.DATA does not exist.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;SPAN&gt;ERROR: Library RESULTS does not exist.&lt;/SPAN&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 20 Aug 2021 12:33:11 GMT</pubDate>
    <dc:creator>serges007</dc:creator>
    <dc:date>2021-08-20T12:33:11Z</dc:date>
    <item>
      <title>problem to access data in my SAS training exam</title>
      <link>https://communities.sas.com/t5/SAS-Programming/problem-to-access-data-in-my-SAS-training-exam/m-p/762793#M241541</link>
      <description>&lt;P&gt;Hi, I am starting my SAS certification training session and I have a small problem with accessing the data. I don't know but I have an error when I submit my first exercise:&lt;BR /&gt;ERROR: File RESULTS.OUTPUT04.DATA does not exist.&lt;BR /&gt;ERROR: Library CERT does not exist.&lt;/P&gt;&lt;P&gt;However I have created the folders in the files(home). I have also created the requested libraries:&lt;/P&gt;&lt;PRE&gt;%let path=/home/u49976893/cert/input;
libname cert "&amp;amp;path";

&lt;/PRE&gt;&lt;PRE&gt;%let path=/home/u49976893/cert/output;
libname results "&amp;amp;path";&lt;/PRE&gt;&lt;P&gt;Here is my sub-code:&lt;/P&gt;&lt;PRE&gt;data cert.input04;
set results.output04;
length var3 $ 5;
var1=ceil(var1);
var2=ceil(var2);
var3=var1*var2;
var20=sum(of var12-var19);
run;&lt;/PRE&gt;&lt;P&gt;I make you here a screen capture of my workspace moreover I make you a capture of the statements of the exercises. but for my part it is specified null part where to import the data of the exam&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="3.png" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/62768iFBD7D650AD3F1DA3/image-size/large?v=v2&amp;amp;px=999" role="button" title="3.png" alt="3.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2.png" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/62770i505453F0A26ECF85/image-size/large?v=v2&amp;amp;px=999" role="button" title="2.png" alt="2.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="1.png" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/62769i2B4E5A04ECC11193/image-size/large?v=v2&amp;amp;px=999" role="button" title="1.png" alt="1.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Aug 2021 09:20:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/problem-to-access-data-in-my-SAS-training-exam/m-p/762793#M241541</guid>
      <dc:creator>serges007</dc:creator>
      <dc:date>2021-08-20T09:20:49Z</dc:date>
    </item>
    <item>
      <title>Re: problem to access data in my SAS training exam</title>
      <link>https://communities.sas.com/t5/SAS-Programming/problem-to-access-data-in-my-SAS-training-exam/m-p/762801#M241547</link>
      <description>&lt;P&gt;The data statement names the dataset to be created, while the set-statement names the datasets to be processed.&lt;/P&gt;
&lt;P&gt;You should also check the log: are both libraries successfully assigned?&lt;/P&gt;</description>
      <pubDate>Fri, 20 Aug 2021 10:30:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/problem-to-access-data-in-my-SAS-training-exam/m-p/762801#M241547</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2021-08-20T10:30:01Z</dc:date>
    </item>
    <item>
      <title>Re: problem to access data in my SAS training exam</title>
      <link>https://communities.sas.com/t5/SAS-Programming/problem-to-access-data-in-my-SAS-training-exam/m-p/762816#M241558</link>
      <description>&lt;P&gt;The data step works like this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Data &lt;STRONG&gt;nameofoutputdataset;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/STRONG&gt;set &lt;STRONG&gt;nameofinputdataset.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Your code has them backwards. &lt;/P&gt;
&lt;P&gt;You have not yet created the results.output04 so of course it does not exist.&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Aug 2021 11:54:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/problem-to-access-data-in-my-SAS-training-exam/m-p/762816#M241558</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2021-08-20T11:54:15Z</dc:date>
    </item>
    <item>
      <title>Re: problem to access data in my SAS training exam</title>
      <link>https://communities.sas.com/t5/SAS-Programming/problem-to-access-data-in-my-SAS-training-exam/m-p/762825#M241561</link>
      <description>&lt;P&gt;&lt;FONT&gt;&lt;FONT&gt;Salut, je changed but I have the same error&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;SPAN&gt;data results.output04;&lt;BR /&gt;set cert.input04;&lt;BR /&gt;length var3 $ 5;&lt;BR /&gt;var1=ceil(var1);&lt;BR /&gt;var2=ceil(var2);&lt;BR /&gt;var3=var1*var2;&lt;BR /&gt;var20=sum(of var12-var19);&lt;BR /&gt;run;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;SPAN&gt;ERROR: File CERT.INPUT04.DATA does not exist.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;SPAN&gt;ERROR: Library RESULTS does not exist.&lt;/SPAN&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Aug 2021 12:33:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/problem-to-access-data-in-my-SAS-training-exam/m-p/762825#M241561</guid>
      <dc:creator>serges007</dc:creator>
      <dc:date>2021-08-20T12:33:11Z</dc:date>
    </item>
    <item>
      <title>Re: problem to access data in my SAS training exam</title>
      <link>https://communities.sas.com/t5/SAS-Programming/problem-to-access-data-in-my-SAS-training-exam/m-p/762860#M241565</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/394040"&gt;@serges007&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&lt;FONT&gt;&lt;FONT&gt;Salut, je changed but I have the same error&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;SPAN&gt;data results.output04;&lt;BR /&gt;set cert.input04;&lt;BR /&gt;length var3 $ 5;&lt;BR /&gt;var1=ceil(var1);&lt;BR /&gt;var2=ceil(var2);&lt;BR /&gt;var3=var1*var2;&lt;BR /&gt;var20=sum(of var12-var19);&lt;BR /&gt;run;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;SPAN&gt;ERROR: File CERT.INPUT04.DATA does not exist.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;SPAN&gt;ERROR: Library RESULTS does not exist.&lt;/SPAN&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Usually indicates a failure to execute the set up of the materials correctly from a previous step.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The first code you show also has both libraries pointing to the same path which might be an issue, possibly in the spelling in the Path macro variable.&lt;/P&gt;</description>
      <pubDate>Fri, 20 Aug 2021 14:58:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/problem-to-access-data-in-my-SAS-training-exam/m-p/762860#M241565</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2021-08-20T14:58:49Z</dc:date>
    </item>
    <item>
      <title>Re: problem to access data in my SAS training exam</title>
      <link>https://communities.sas.com/t5/SAS-Programming/problem-to-access-data-in-my-SAS-training-exam/m-p/762978#M241611</link>
      <description>&lt;P&gt;hi ballard, thanks&amp;nbsp;for your observation, I pointed the libraries in different directories, the code is executed but there is no data in the output table and there is an error generated:&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;ERROR: File CERT.INPUT04.DATA does not exist.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Aug 2021 20:55:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/problem-to-access-data-in-my-SAS-training-exam/m-p/762978#M241611</guid>
      <dc:creator>serges007</dc:creator>
      <dc:date>2021-08-20T20:55:52Z</dc:date>
    </item>
    <item>
      <title>Re: problem to access data in my SAS training exam</title>
      <link>https://communities.sas.com/t5/SAS-Programming/problem-to-access-data-in-my-SAS-training-exam/m-p/762990#M241618</link>
      <description>&lt;P&gt;Did you assign library first?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Aug 2021 21:39:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/problem-to-access-data-in-my-SAS-training-exam/m-p/762990#M241618</guid>
      <dc:creator>tarheel13</dc:creator>
      <dc:date>2021-08-20T21:39:40Z</dc:date>
    </item>
    <item>
      <title>Re: problem to access data in my SAS training exam</title>
      <link>https://communities.sas.com/t5/SAS-Programming/problem-to-access-data-in-my-SAS-training-exam/m-p/763048#M241638</link>
      <description>Hi:&lt;BR /&gt;  The instructions clearly say that you should have an input folder under the cert folder but under your cert folder, you only have programs and results. You do not have an input folder or an output folder. I would recommend that you go back to the beginning instructions and follow the instructions again for making the data on the SAS OnDemand for Academics server.&lt;BR /&gt;Cynthia</description>
      <pubDate>Sat, 21 Aug 2021 15:09:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/problem-to-access-data-in-my-SAS-training-exam/m-p/763048#M241638</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2021-08-21T15:09:28Z</dc:date>
    </item>
    <item>
      <title>Re: problem to access data in my SAS training exam</title>
      <link>https://communities.sas.com/t5/SAS-Programming/problem-to-access-data-in-my-SAS-training-exam/m-p/763103#M241656</link>
      <description>Hi Cynthia , the instructions are there and I can't see anywhere where it is indicate the link to download the input data.</description>
      <pubDate>Sun, 22 Aug 2021 06:23:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/problem-to-access-data-in-my-SAS-training-exam/m-p/763103#M241656</guid>
      <dc:creator>serges007</dc:creator>
      <dc:date>2021-08-22T06:23:51Z</dc:date>
    </item>
    <item>
      <title>Re: problem to access data in my SAS training exam</title>
      <link>https://communities.sas.com/t5/SAS-Programming/problem-to-access-data-in-my-SAS-training-exam/m-p/763105#M241658</link>
      <description>&lt;P&gt;Thanks Cynthia, you were absolutely right, I am in the wrong working environment, I should be in SAS virtual Labs, for that it was enough to click on create user and follow the instructions. Sorry everyone for the inconvenience&lt;/P&gt;</description>
      <pubDate>Sun, 22 Aug 2021 06:50:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/problem-to-access-data-in-my-SAS-training-exam/m-p/763105#M241658</guid>
      <dc:creator>serges007</dc:creator>
      <dc:date>2021-08-22T06:50:21Z</dc:date>
    </item>
    <item>
      <title>Re: problem to access data in my SAS training exam</title>
      <link>https://communities.sas.com/t5/SAS-Programming/problem-to-access-data-in-my-SAS-training-exam/m-p/843341#M333418</link>
      <description>&lt;P&gt;You need to derive the data from the input folder&amp;nbsp;&lt;/P&gt;&lt;P&gt;hence your code should be&amp;nbsp;&lt;/P&gt;&lt;P&gt;data program04; /*or whatever name you want to give for the dataset&lt;/P&gt;&lt;P&gt;set cert.input04;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Nov 2022 12:13:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/problem-to-access-data-in-my-SAS-training-exam/m-p/843341#M333418</guid>
      <dc:creator>Harichandana19</dc:creator>
      <dc:date>2022-11-09T12:13:08Z</dc:date>
    </item>
  </channel>
</rss>

