<?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 the problem Log: Libref ORION is not assigned? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-solve-the-problem-Log-Libref-ORION-is-not-assigned/m-p/243881#M45401</link>
    <description>&lt;P&gt;Sure, delete the folder.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You'll find it under /SAS University Edition/myfolders/&lt;/P&gt;</description>
    <pubDate>Fri, 15 Jan 2016 18:58:06 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2016-01-15T18:58:06Z</dc:date>
    <item>
      <title>How to solve the problem Log: Libref ORION is not assigned?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-solve-the-problem-Log-Libref-ORION-is-not-assigned/m-p/243387#M45258</link>
      <description>&lt;P&gt;&lt;STRONG&gt;How to solve the problem Log: Libref ORION is not assigned?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;I do SAS Programming 1&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Orion library was defined correctly (I think)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;This program gives Log (below)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc contents data=orion._all_;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Log:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;ERROR: Libref ORION is not assigned.&lt;/P&gt;&lt;P&gt;NOTE: Statements not processed because of errors noted above.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE CONTENTS used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/P&gt;&lt;P&gt;58&lt;/P&gt;&lt;P&gt;59 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jan 2016 03:00:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-solve-the-problem-Log-Libref-ORION-is-not-assigned/m-p/243387#M45258</guid>
      <dc:creator>EvgenyRogozin</dc:creator>
      <dc:date>2016-01-14T03:00:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to solve the problem Log: Libref ORION is not assigned?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-solve-the-problem-Log-Libref-ORION-is-not-assigned/m-p/243398#M45260</link>
      <description>&lt;P&gt;The error message is saying the ORION library doesn't exist.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you're doing the online SAS Programming 1 course - go read the setup instructions and run the code again. &amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you ran it the first time, closed your session and started a new one you need to map the library back to the folder.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;libname orion 'path you used previously';&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you absolutely think you did it correctly you can check it using the following code snippet:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
select *
from sashelp.vlibnam
where libname='ORION';
quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jan 2016 03:45:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-solve-the-problem-Log-Libref-ORION-is-not-assigned/m-p/243398#M45260</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-01-14T03:45:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to solve the problem Log: Libref ORION is not assigned?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-solve-the-problem-Log-Libref-ORION-is-not-assigned/m-p/243424#M45262</link>
      <description>&lt;P&gt;This simply means that you did not use the LIBNAME statement to assign the library in the current SAS session.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jan 2016 09:25:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-solve-the-problem-Log-Libref-ORION-is-not-assigned/m-p/243424#M45262</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2016-01-14T09:25:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to solve the problem Log: Libref ORION is not assigned?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-solve-the-problem-Log-Libref-ORION-is-not-assigned/m-p/243558#M45297</link>
      <description>&lt;DIV class="sasSource"&gt;&lt;FONT color="#3366FF"&gt;&lt;STRONG&gt;Thanks for the help. &lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;&lt;STRONG&gt;I have used your program to check the Orion library right after SAS Studio launch. Log did not show a error (below). Does it mean everything is correct and Orion library was installed properly?&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#3366FF"&gt;&lt;STRONG&gt;Thanks.&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&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 proc sql;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;57 select *&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;58 from sashelp.vlibnam&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;59 where libname='ORION';&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: No rows were selected.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;60 quit;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: PROCEDURE SQL used (Total process time):&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;real time 0.05 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;cpu time 0.03 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;61&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;62 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;74&lt;/DIV&gt;</description>
      <pubDate>Thu, 14 Jan 2016 19:09:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-solve-the-problem-Log-Libref-ORION-is-not-assigned/m-p/243558#M45297</guid>
      <dc:creator>EvgenyRogozin</dc:creator>
      <dc:date>2016-01-14T19:09:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to solve the problem Log: Libref ORION is not assigned?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-solve-the-problem-Log-Libref-ORION-is-not-assigned/m-p/243560#M45299</link>
      <description>&lt;P&gt;There's a line in there that tells you that the library does not exist. If the library existed you would see the record of the library, but it doesn't exist so you don't get any results. Are you using SAS UE? If so, when you create the library via the GUI make sure to select that it's automatically added at start up. Otherwise everytime you close SAS UE you lose the library reference.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;NOTE: No rows were selected.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jan 2016 19:11:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-solve-the-problem-Log-Libref-ORION-is-not-assigned/m-p/243560#M45299</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-01-14T19:11:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to solve the problem Log: Libref ORION is not assigned?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-solve-the-problem-Log-Libref-ORION-is-not-assigned/m-p/243568#M45301</link>
      <description>&lt;P&gt;Yes, I use SAS Studio University Edition.&lt;BR /&gt;When I create orion library again always get "A folder named "ecprg193" already exists". Does it mean orion library is has installed and exists? May be change some settings for orion library?&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jan 2016 20:00:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-solve-the-problem-Log-Libref-ORION-is-not-assigned/m-p/243568#M45301</guid>
      <dc:creator>EvgenyRogozin</dc:creator>
      <dc:date>2016-01-14T20:00:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to solve the problem Log: Libref ORION is not assigned?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-solve-the-problem-Log-Libref-ORION-is-not-assigned/m-p/243579#M45309</link>
      <description>How are creating your library?&lt;BR /&gt;</description>
      <pubDate>Thu, 14 Jan 2016 20:29:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-solve-the-problem-Log-Libref-ORION-is-not-assigned/m-p/243579#M45309</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-01-14T20:29:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to solve the problem Log: Libref ORION is not assigned?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-solve-the-problem-Log-Libref-ORION-is-not-assigned/m-p/243592#M45315</link>
      <description>&lt;P&gt;The orion library was created accordingly Setup Instructions for SAS Studio (look at the Pictures).&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/12191i7F961BF65085C4F7/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="Orion 1.jpg" title="Orion 1.jpg" /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/12192i6CD19F918A6B1A5D/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="Orion 2.jpg" title="Orion 2.jpg" /&gt;</description>
      <pubDate>Thu, 14 Jan 2016 21:03:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-solve-the-problem-Log-Libref-ORION-is-not-assigned/m-p/243592#M45315</guid>
      <dc:creator>EvgenyRogozin</dc:creator>
      <dc:date>2016-01-14T21:03:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to solve the problem Log: Libref ORION is not assigned?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-solve-the-problem-Log-Libref-ORION-is-not-assigned/m-p/243594#M45317</link>
      <description>&lt;P&gt;Read the set up instructions you posted in Picture 1. It explains in detail how to add the code to the Snippet library and that you have to run the snippet every time you start up SAS UE.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The second set of instructions also clearly identifies that you only need to run it once.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jan 2016 21:08:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-solve-the-problem-Log-Libref-ORION-is-not-assigned/m-p/243594#M45317</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-01-14T21:08:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to solve the problem Log: Libref ORION is not assigned?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-solve-the-problem-Log-Libref-ORION-is-not-assigned/m-p/243844#M45388</link>
      <description>&lt;P&gt;&lt;FONT color="#9900ff"&gt;&lt;STRONG&gt;The snippet "setup.sas" already exists in your snippets folder.&lt;BR /&gt;Do you want to replace it? &lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;How to run the snippet every time when start up SAS UE?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Jan 2016 17:17:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-solve-the-problem-Log-Libref-ORION-is-not-assigned/m-p/243844#M45388</guid>
      <dc:creator>EvgenyRogozin</dc:creator>
      <dc:date>2016-01-15T17:17:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to solve the problem Log: Libref ORION is not assigned?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-solve-the-problem-Log-Libref-ORION-is-not-assigned/m-p/243870#M45397</link>
      <description>&lt;P&gt;Snippets are sets of code, either commonly used or template for common tasks.&amp;nbsp;For the setup.sas you'd probably drag it into your editor and run, or double click/open and run it.&lt;/P&gt;
&lt;P&gt;For a template snippet you'll need to fill in values ie data file trying to import for the import snippet.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/software/products/university-edition/faq/SAS_accessdata_Excel_xls.htm" target="_blank"&gt;http://support.sas.com/software/products/university-edition/faq/SAS_accessdata_Excel_xls.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Have you tried following the video tutorial series for SAS UE?&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/software/products/university-edition/faq/SAS_accessdata_Excel_xls.htm" target="_blank"&gt;http://support.sas.com/software/products/university-edition/faq/SAS_accessdata_Excel_xls.htm&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Jan 2016 18:29:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-solve-the-problem-Log-Libref-ORION-is-not-assigned/m-p/243870#M45397</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-01-15T18:29:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to solve the problem Log: Libref ORION is not assigned?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-solve-the-problem-Log-Libref-ORION-is-not-assigned/m-p/243874#M45398</link>
      <description>&lt;P&gt;Like this?&lt;/P&gt;&lt;PRE&gt;libname orion '/folders/myfolders/ecprg193';
run;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Jan 2016 22:40:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-solve-the-problem-Log-Libref-ORION-is-not-assigned/m-p/243874#M45398</guid>
      <dc:creator>EvgenyRogozin</dc:creator>
      <dc:date>2016-01-15T22:40:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to solve the problem Log: Libref ORION is not assigned?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-solve-the-problem-Log-Libref-ORION-is-not-assigned/m-p/243878#M45399</link>
      <description>&lt;P&gt;Thanks for the help. I will read it.&lt;BR /&gt;Orion library was created accordingly Setup Instructions for SAS Studio and SAS said everything is OK. I am surprise why every program which I run has an error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can I uninstall orion library and install again?&lt;/P&gt;</description>
      <pubDate>Fri, 15 Jan 2016 18:44:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-solve-the-problem-Log-Libref-ORION-is-not-assigned/m-p/243878#M45399</guid>
      <dc:creator>EvgenyRogozin</dc:creator>
      <dc:date>2016-01-15T18:44:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to solve the problem Log: Libref ORION is not assigned?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-solve-the-problem-Log-Libref-ORION-is-not-assigned/m-p/243881#M45401</link>
      <description>&lt;P&gt;Sure, delete the folder.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You'll find it under /SAS University Edition/myfolders/&lt;/P&gt;</description>
      <pubDate>Fri, 15 Jan 2016 18:58:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-solve-the-problem-Log-Libref-ORION-is-not-assigned/m-p/243881#M45401</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-01-15T18:58:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to solve the problem Log: Libref ORION is not assigned?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-solve-the-problem-Log-Libref-ORION-is-not-assigned/m-p/243888#M45405</link>
      <description>&lt;P&gt;Just simply Delete NOT Uninstall?&lt;BR /&gt;What is about Snippets? I need to Delete it also or it will be automatically deleted?&lt;BR /&gt;Sorry for so many simple questions, I am very new person in SAS.&lt;/P&gt;</description>
      <pubDate>Fri, 15 Jan 2016 19:13:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-solve-the-problem-Log-Libref-ORION-is-not-assigned/m-p/243888#M45405</guid>
      <dc:creator>EvgenyRogozin</dc:creator>
      <dc:date>2016-01-15T19:13:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to solve the problem Log: Libref ORION is not assigned?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-solve-the-problem-Log-Libref-ORION-is-not-assigned/m-p/243904#M45409</link>
      <description>&lt;P&gt;Delete the folder is fine. You should be able to right click on the snippet to delete it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here's a hint though - you can try things and test them out, if it breaks, start over &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Jan 2016 20:20:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-solve-the-problem-Log-Libref-ORION-is-not-assigned/m-p/243904#M45409</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-01-15T20:20:55Z</dc:date>
    </item>
  </channel>
</rss>

