<?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: brand new user keep getting library error in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/brand-new-user-keep-getting-library-error/m-p/534085#M146478</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/260039"&gt;@deeelle&lt;/a&gt;&amp;nbsp;and welcome to the community.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The error you are getting normally means the physical location you are pointing the libname statement at doesn't exist so that's the first thing to check.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The other possibility Its that I notice that you have a dot in the physical location. This may be causing an issue as a dot is usually the precursor to a file extension - try renaming the folder to remove the dot and change your libname statement.&lt;/P&gt;</description>
    <pubDate>Fri, 08 Feb 2019 22:43:04 GMT</pubDate>
    <dc:creator>ChrisBrooks</dc:creator>
    <dc:date>2019-02-08T22:43:04Z</dc:date>
    <item>
      <title>brand new user keep getting library error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/brand-new-user-keep-getting-library-error/m-p/534077#M146477</link>
      <description>&lt;P&gt;Hi community, I've never done any sort of coding before, but I'm in now a class in college that requires us to know SAS. This is literally part of the first homework and I'm lost at what to do. I copied the directions on the handout to the T, but I keep getting an error that the library doesn't exist. I honestly don't know what I'm doing to begin with so I have no clue how to fix it.&amp;nbsp;&lt;/P&gt;&lt;P&gt;If anyone has any insight that would be so greatly appreciated.&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screen Shot 2019-02-08 at 4.58.25 PM.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/27014i80A13838817C7C50/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screen Shot 2019-02-08 at 4.58.25 PM.png" alt="Screen Shot 2019-02-08 at 4.58.25 PM.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Feb 2019 22:06:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/brand-new-user-keep-getting-library-error/m-p/534077#M146477</guid>
      <dc:creator>deeelle</dc:creator>
      <dc:date>2019-02-08T22:06:00Z</dc:date>
    </item>
    <item>
      <title>Re: brand new user keep getting library error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/brand-new-user-keep-getting-library-error/m-p/534085#M146478</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/260039"&gt;@deeelle&lt;/a&gt;&amp;nbsp;and welcome to the community.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The error you are getting normally means the physical location you are pointing the libname statement at doesn't exist so that's the first thing to check.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The other possibility Its that I notice that you have a dot in the physical location. This may be causing an issue as a dot is usually the precursor to a file extension - try renaming the folder to remove the dot and change your libname statement.&lt;/P&gt;</description>
      <pubDate>Fri, 08 Feb 2019 22:43:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/brand-new-user-keep-getting-library-error/m-p/534085#M146478</guid>
      <dc:creator>ChrisBrooks</dc:creator>
      <dc:date>2019-02-08T22:43:04Z</dc:date>
    </item>
    <item>
      <title>Re: brand new user keep getting library error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/brand-new-user-keep-getting-library-error/m-p/534109#M146490</link>
      <description>&lt;P&gt;You may also try using the Tools&amp;gt;New Library menu and navigating use the Browse button to find the folder you want.&lt;/P&gt;
&lt;P&gt;If you check on the box "Enable at startup' it will be available in following SAS sessions.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For fun after creating the library you can enter the command LIBNAME I the box in the upper left under the File menu. That will bring up a window with all of the assigned libraries and you can see the actual path used.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or use this code to get path text in the results window after it is assigned.&lt;/P&gt;
&lt;PRE&gt;proc sql;
   select distinct path
   from dictionary.libnames
   where libname='CITY' 
   ;
quit;&lt;/PRE&gt;</description>
      <pubDate>Sat, 09 Feb 2019 00:28:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/brand-new-user-keep-getting-library-error/m-p/534109#M146490</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-02-09T00:28:50Z</dc:date>
    </item>
    <item>
      <title>Re: brand new user keep getting library error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/brand-new-user-keep-getting-library-error/m-p/534216#M146548</link>
      <description>&lt;P&gt;Your path looks mostly correct, do you have a folder called people on your desktop? That's what your'e trying to refer to in the code. You can do a quick test by removing the 'people' portion and see if that works.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;One sure way to ensure the path is correct is to navigate to the location in Windows Explorer, right click while holding down SHIFT+CTRL then select "copy as path". It will give you the full path to the folder.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/260039"&gt;@deeelle&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi community, I've never done any sort of coding before, but I'm in now a class in college that requires us to know SAS. This is literally part of the first homework and I'm lost at what to do. I copied the directions on the handout to the T, but I keep getting an error that the library doesn't exist. I honestly don't know what I'm doing to begin with so I have no clue how to fix it.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If anyone has any insight that would be so greatly appreciated.&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screen Shot 2019-02-08 at 4.58.25 PM.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/27014i80A13838817C7C50/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screen Shot 2019-02-08 at 4.58.25 PM.png" alt="Screen Shot 2019-02-08 at 4.58.25 PM.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 10 Feb 2019 00:17:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/brand-new-user-keep-getting-library-error/m-p/534216#M146548</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-02-10T00:17:42Z</dc:date>
    </item>
    <item>
      <title>Re: brand new user keep getting library error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/brand-new-user-keep-getting-library-error/m-p/534238#M146564</link>
      <description>&lt;P&gt;Just wanted to say thank you to&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/32246"&gt;@ChrisBrooks&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13884"&gt;@ballardw&lt;/a&gt;&amp;nbsp;, and&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;&amp;nbsp;!!!!!!!! I ended up getting help from the class TA and saving it in a different location, but I really appreciate you all helping out this clueless newbie. I was having a mini panic attack that if I couldn't do the first homework then I was for sure going to fail the class, so I really appreciate how fast and nice you all were in your replies.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hopefully I'll learn more and in the future be able to help out others...maybe&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 10 Feb 2019 01:06:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/brand-new-user-keep-getting-library-error/m-p/534238#M146564</guid>
      <dc:creator>deeelle</dc:creator>
      <dc:date>2019-02-10T01:06:45Z</dc:date>
    </item>
    <item>
      <title>Re: brand new user keep getting library error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/brand-new-user-keep-getting-library-error/m-p/534239#M146565</link>
      <description>&lt;P&gt;Many thanks for your kind words&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/260039"&gt;@deeelle&lt;/a&gt;&amp;nbsp;- we're always happy to help&lt;/P&gt;</description>
      <pubDate>Sun, 10 Feb 2019 01:08:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/brand-new-user-keep-getting-library-error/m-p/534239#M146565</guid>
      <dc:creator>ChrisBrooks</dc:creator>
      <dc:date>2019-02-10T01:08:31Z</dc:date>
    </item>
    <item>
      <title>Re: brand new user keep getting library error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/brand-new-user-keep-getting-library-error/m-p/534240#M146566</link>
      <description>just for future reference - if i want to at some point use the data in this library i just created, what would i write to access it?</description>
      <pubDate>Sun, 10 Feb 2019 01:22:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/brand-new-user-keep-getting-library-error/m-p/534240#M146566</guid>
      <dc:creator>deeelle</dc:creator>
      <dc:date>2019-02-10T01:22:22Z</dc:date>
    </item>
    <item>
      <title>Re: brand new user keep getting library error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/brand-new-user-keep-getting-library-error/m-p/534243#M146569</link>
      <description>&lt;P&gt;You'd most likely use data steps, macros or procedures or a combination of these. The possibilities are endless - there's a short video here on how to write a basic SAS program -&amp;gt;&amp;nbsp;&lt;A href="https://video.sas.com/detail/videos/how-to-tutorials/video/4573016765001/writing-a-basic-sas-program?autoStart=true" target="_blank"&gt;https://video.sas.com/detail/videos/how-to-tutorials/video/4573016765001/writing-a-basic-sas-program?autoStart=true&lt;/A&gt; along with other useful resources&lt;/P&gt;</description>
      <pubDate>Sun, 10 Feb 2019 01:46:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/brand-new-user-keep-getting-library-error/m-p/534243#M146569</guid>
      <dc:creator>ChrisBrooks</dc:creator>
      <dc:date>2019-02-10T01:46:21Z</dc:date>
    </item>
    <item>
      <title>Re: brand new user keep getting library error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/brand-new-user-keep-getting-library-error/m-p/534244#M146570</link>
      <description>thanks!</description>
      <pubDate>Sun, 10 Feb 2019 01:59:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/brand-new-user-keep-getting-library-error/m-p/534244#M146570</guid>
      <dc:creator>deeelle</dc:creator>
      <dc:date>2019-02-10T01:59:06Z</dc:date>
    </item>
  </channel>
</rss>

