<?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: SAS Programming 1 Lesson 4: permanent library location_different sorting outcome between tables in Programming 1 and 2</title>
    <link>https://communities.sas.com/t5/Programming-1-and-2/SAS-Programming-1-Lesson-4-permanent-library-location-different/m-p/821877#M1122</link>
    <description>&lt;P&gt;Here it is&lt;/P&gt;&lt;PRE&gt;1          OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
 72         
 73         libname out "/home/u61696289/EPG1V2/output/Fox";
 NOTE: Library OUT was created.
 NOTE: Libref OUT was successfully assigned as follows: 
       Engine:        V9 
       Physical Name: /home/u61696289/EPG1V2/output/Fox
 74         data out Fox;
 75         set pg1.np_species;
 76         where Category='Mammal' and upcase(Common_Names) like '%FOX%'
 77         and upcase(Common_Names) not like '%SQUIRREL%';
 78         drop Category Record_Status Occurrence Nativeness;
 79         run;
 
 NOTE: There were 18 observations read from the data set PG1.NP_SPECIES.
       WHERE (Category='Mammal') and UPCASE(Common_Names) like '%FOX%' and UPCASE(Common_Names) not like '%SQUIRREL%';
 NOTE: The data set WORK.OUT has 18 observations and 7 variables.
 NOTE: The data set WORK.FOX has 18 observations and 7 variables.
 NOTE: DATA statement used (Total process time):
       real time           0.01 seconds
       user cpu time       0.01 seconds
       system cpu time     0.00 seconds
       memory              2928.00k
       OS Memory           30640.00k
       Timestamp           06.07.2022 03:40:44 пп
       Step Count                        112  Switch Count  4
       Page Faults                       0
       Page Reclaims                     469
       Page Swaps                        0
       Voluntary Context Switches        25
       Involuntary Context Switches      0
       Block Input Operations            0
       Block Output Operations           536
       
 
 80         proc sort data=fox;
 81         by Common_Names;
 82         run;
 
 NOTE: There were 18 observations read from the data set WORK.FOX.
 NOTE: The data set WORK.FOX has 18 observations and 7 variables.
 NOTE: PROCEDURE SORT used (Total process time):
       real time           0.00 seconds
       user cpu time       0.00 seconds
       system cpu time     0.01 seconds
       memory              914.40k
       OS Memory           29612.00k
       Timestamp           06.07.2022 03:40:44 пп
       Step Count                        113  Switch Count  2
       Page Faults                       0
       Page Reclaims                     116
       Page Swaps                        0
       Voluntary Context Switches        10
       Involuntary Context Switches      0
       Block Input Operations            0
       Block Output Operations           264
       
 
 83         
 84         OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
 96         &lt;/PRE&gt;</description>
    <pubDate>Wed, 06 Jul 2022 15:44:26 GMT</pubDate>
    <dc:creator>SASRB</dc:creator>
    <dc:date>2022-07-06T15:44:26Z</dc:date>
    <item>
      <title>SAS Programming 1 Lesson 4: permanent library location_different sorting outcome between tables</title>
      <link>https://communities.sas.com/t5/Programming-1-and-2/SAS-Programming-1-Lesson-4-permanent-library-location-different/m-p/821864#M1118</link>
      <description>&lt;P&gt;Dears,&lt;/P&gt;&lt;P&gt;would you please explain if the permanent library should appear in the indicated place?&lt;/P&gt;&lt;P&gt;For example, during the practice with Foxes, I created the permanent libriary but nothing has appeared in the folder I have assigned the table to.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SASRB_0-1657118895508.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/72984iF2CAF2C95F8DE5D9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SASRB_0-1657118895508.png" alt="SASRB_0-1657118895508.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Next question is why there is a difference in the sorting outcome between table WORK.FOX and WORK.OUT like on the screens below?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SASRB_1-1657119254779.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/72985i65CF96A0856214D5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SASRB_1-1657119254779.png" alt="SASRB_1-1657119254779.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="SASRB_2-1657119304320.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/72986iB4F7AB5D61A5DE89/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SASRB_2-1657119304320.png" alt="SASRB_2-1657119304320.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Do I get it wright that both tables (WORK.FOX and WORK.OUT) are permanent?&lt;/P&gt;&lt;P&gt;"Fox" should be permanent as it was coded so:&lt;/P&gt;&lt;P&gt;"libname out "home/u61696289/EPG1V2/output/Fox";&lt;BR /&gt;data out Fox;&lt;BR /&gt;set pg1.np_species;"&lt;/P&gt;&lt;P&gt;And "Out" has out in its name, therefore it sould be permanent as well.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Jul 2022 15:04:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Programming-1-and-2/SAS-Programming-1-Lesson-4-permanent-library-location-different/m-p/821864#M1118</guid>
      <dc:creator>SASRB</dc:creator>
      <dc:date>2022-07-06T15:04:07Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Programming 1 Lesson 4: permanent library location_different sorting outcome between tables</title>
      <link>https://communities.sas.com/t5/Programming-1-and-2/SAS-Programming-1-Lesson-4-permanent-library-location-different/m-p/821868#M1119</link>
      <description>&lt;P&gt;Your library typically goes to a folder that exists. You can create a new folder with a libname statement but I wouldn't recommend that if you're just learning.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Fox data set is a permanent data set in the out library.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;*Changes the options so that a new folder can be created with a libname statement;
*Or create the folder in the OUTPUT folder first;
options dlcreatedir;

libname out "home/u61696289/EPG1V2/output/Fox";

data out.fox;
set pg1.np_species;
run;

&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Look for the OUT library in the Library Pane, not the Server Files and Folders Pane.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Jul 2022 15:15:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Programming-1-and-2/SAS-Programming-1-Lesson-4-permanent-library-location-different/m-p/821868#M1119</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2022-07-06T15:15:49Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Programming 1 Lesson 4: permanent library location_different sorting outcome between tables</title>
      <link>https://communities.sas.com/t5/Programming-1-and-2/SAS-Programming-1-Lesson-4-permanent-library-location-different/m-p/821872#M1120</link>
      <description>Thank you,&lt;BR /&gt;Indeed, it was in the Library Pane.&lt;BR /&gt;Any ideas on the difference between the sorting process outcome?</description>
      <pubDate>Wed, 06 Jul 2022 15:28:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Programming-1-and-2/SAS-Programming-1-Lesson-4-permanent-library-location-different/m-p/821872#M1120</guid>
      <dc:creator>SASRB</dc:creator>
      <dc:date>2022-07-06T15:28:21Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Programming 1 Lesson 4: permanent library location_different sorting outcome between tables</title>
      <link>https://communities.sas.com/t5/Programming-1-and-2/SAS-Programming-1-Lesson-4-permanent-library-location-different/m-p/821874#M1121</link>
      <description>&lt;P&gt;No idea, is that all the code you ran? Can you show the log?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cannot replicate with similar code.&lt;/P&gt;
&lt;P&gt;I suspect there's something you did after the code shown, ie sort the FOX data set.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data out fox;
set sashelp.class;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 06 Jul 2022 15:38:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Programming-1-and-2/SAS-Programming-1-Lesson-4-permanent-library-location-different/m-p/821874#M1121</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2022-07-06T15:38:38Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Programming 1 Lesson 4: permanent library location_different sorting outcome between tables</title>
      <link>https://communities.sas.com/t5/Programming-1-and-2/SAS-Programming-1-Lesson-4-permanent-library-location-different/m-p/821877#M1122</link>
      <description>&lt;P&gt;Here it is&lt;/P&gt;&lt;PRE&gt;1          OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
 72         
 73         libname out "/home/u61696289/EPG1V2/output/Fox";
 NOTE: Library OUT was created.
 NOTE: Libref OUT was successfully assigned as follows: 
       Engine:        V9 
       Physical Name: /home/u61696289/EPG1V2/output/Fox
 74         data out Fox;
 75         set pg1.np_species;
 76         where Category='Mammal' and upcase(Common_Names) like '%FOX%'
 77         and upcase(Common_Names) not like '%SQUIRREL%';
 78         drop Category Record_Status Occurrence Nativeness;
 79         run;
 
 NOTE: There were 18 observations read from the data set PG1.NP_SPECIES.
       WHERE (Category='Mammal') and UPCASE(Common_Names) like '%FOX%' and UPCASE(Common_Names) not like '%SQUIRREL%';
 NOTE: The data set WORK.OUT has 18 observations and 7 variables.
 NOTE: The data set WORK.FOX has 18 observations and 7 variables.
 NOTE: DATA statement used (Total process time):
       real time           0.01 seconds
       user cpu time       0.01 seconds
       system cpu time     0.00 seconds
       memory              2928.00k
       OS Memory           30640.00k
       Timestamp           06.07.2022 03:40:44 пп
       Step Count                        112  Switch Count  4
       Page Faults                       0
       Page Reclaims                     469
       Page Swaps                        0
       Voluntary Context Switches        25
       Involuntary Context Switches      0
       Block Input Operations            0
       Block Output Operations           536
       
 
 80         proc sort data=fox;
 81         by Common_Names;
 82         run;
 
 NOTE: There were 18 observations read from the data set WORK.FOX.
 NOTE: The data set WORK.FOX has 18 observations and 7 variables.
 NOTE: PROCEDURE SORT used (Total process time):
       real time           0.00 seconds
       user cpu time       0.00 seconds
       system cpu time     0.01 seconds
       memory              914.40k
       OS Memory           29612.00k
       Timestamp           06.07.2022 03:40:44 пп
       Step Count                        113  Switch Count  2
       Page Faults                       0
       Page Reclaims                     116
       Page Swaps                        0
       Voluntary Context Switches        10
       Involuntary Context Switches      0
       Block Input Operations            0
       Block Output Operations           264
       
 
 83         
 84         OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
 96         &lt;/PRE&gt;</description>
      <pubDate>Wed, 06 Jul 2022 15:44:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Programming-1-and-2/SAS-Programming-1-Lesson-4-permanent-library-location-different/m-p/821877#M1122</guid>
      <dc:creator>SASRB</dc:creator>
      <dc:date>2022-07-06T15:44:26Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Programming 1 Lesson 4: permanent library location_different sorting outcome between tables</title>
      <link>https://communities.sas.com/t5/Programming-1-and-2/SAS-Programming-1-Lesson-4-permanent-library-location-different/m-p/821879#M1123</link>
      <description>&lt;P&gt;You sorted fox but did not sort the out data set so it has the original sort order.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;FYI - I think the OUT data set is a mistake, your code should have been OUT&lt;FONT size="6" color="#FF0000"&gt;&lt;STRONG&gt;.&lt;/STRONG&gt;&lt;/FONT&gt;FOX to create the fox data set in the OUT library. Right now it's in the work library which is not permanent and your sort or any work on the FOX data set will not be saved.&lt;/P&gt;</description>
      <pubDate>Wed, 06 Jul 2022 15:49:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Programming-1-and-2/SAS-Programming-1-Lesson-4-permanent-library-location-different/m-p/821879#M1123</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2022-07-06T15:49:11Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Programming 1 Lesson 4: permanent library location_different sorting outcome between tables</title>
      <link>https://communities.sas.com/t5/Programming-1-and-2/SAS-Programming-1-Lesson-4-permanent-library-location-different/m-p/821888#M1124</link>
      <description>&lt;P&gt;You must be right.&lt;/P&gt;&lt;P&gt;Upon changing "data out Fox;" to "data out.Fox;" and "proc sort data=fox;" to "proc sort data=out.fox;", there was only one table and it has appeared in the Library Pane.&lt;/P&gt;&lt;P&gt;I hope that`s fine now.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SASRB_0-1657123628649.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/72992i1E1B08BCA3C56302/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SASRB_0-1657123628649.png" alt="SASRB_0-1657123628649.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;PRE&gt;1          OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
 72         
 73         libname out "/home/u61696289/EPG1V2/output/Fox";
 NOTE: Libref OUT was successfully assigned as follows: 
       Engine:        V9 
       Physical Name: /home/u61696289/EPG1V2/output/Fox
 74         data out.Fox;
 75         set pg1.np_species;
 76         where Category='Mammal' and upcase(Common_Names) like '%FOX%'
 77         and upcase(Common_Names) not like '%SQUIRREL%';
 78         drop Category Record_Status Occurrence Nativeness;
 79         run;
 
 NOTE: There were 18 observations read from the data set PG1.NP_SPECIES.
       WHERE (Category='Mammal') and UPCASE(Common_Names) like '%FOX%' and UPCASE(Common_Names) not like '%SQUIRREL%';
 NOTE: The data set OUT.FOX has 18 observations and 7 variables.
 NOTE: DATA statement used (Total process time):
       real time           0.01 seconds
       user cpu time       0.01 seconds
       system cpu time     0.00 seconds
       memory              2319.12k
       OS Memory           30636.00k
       Timestamp           06.07.2022 04:04:27 пп
       Step Count                        182  Switch Count  1
       Page Faults                       0
       Page Reclaims                     382
       Page Swaps                        0
       Voluntary Context Switches        19
       Involuntary Context Switches      0
       Block Input Operations            0
       Block Output Operations           264
       
 
 80         proc sort data=out.fox;
 81         by Common_Names;
 82         run;
 
 NOTE: There were 18 observations read from the data set OUT.FOX.
 NOTE: The data set OUT.FOX has 18 observations and 7 variables.
 NOTE: PROCEDURE SORT used (Total process time):
       real time           0.02 seconds
       user cpu time       0.00 seconds
       system cpu time     0.01 seconds
       memory              916.53k
       OS Memory           29868.00k
       Timestamp           06.07.2022 04:04:27 пп
       Step Count                        183  Switch Count  1
       Page Faults                       0
       Page Reclaims                     115
       Page Swaps                        0
       Voluntary Context Switches        45
       Involuntary Context Switches      0
       Block Input Operations            288
       Block Output Operations           264
       
 
 83         
 84         OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
 96         
 User: u61696289&lt;/PRE&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Jul 2022 16:16:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Programming-1-and-2/SAS-Programming-1-Lesson-4-permanent-library-location-different/m-p/821888#M1124</guid>
      <dc:creator>SASRB</dc:creator>
      <dc:date>2022-07-06T16:16:53Z</dc:date>
    </item>
  </channel>
</rss>

