<?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 it applying in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/how-it-applying/m-p/526070#M143181</link>
    <description>&lt;P&gt;Thanks for the clarification! I forgot that it's a global statement.&lt;/P&gt;</description>
    <pubDate>Thu, 10 Jan 2019 15:01:07 GMT</pubDate>
    <dc:creator>cosmid</dc:creator>
    <dc:date>2019-01-10T15:01:07Z</dc:date>
    <item>
      <title>how it applying</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-it-applying/m-p/526053#M143171</link>
      <description>&lt;P&gt;proc sql ;&lt;/P&gt;&lt;P&gt;libname ss 'pathname' ;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;if i apply above program the library will form can you explain?&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jan 2019 14:16:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-it-applying/m-p/526053#M143171</guid>
      <dc:creator>thanikondharish</dc:creator>
      <dc:date>2019-01-10T14:16:32Z</dc:date>
    </item>
    <item>
      <title>Re: how it applying</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-it-applying/m-p/526056#M143172</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/209685"&gt;@thanikondharish&lt;/a&gt; a library does not form.&lt;/P&gt;
&lt;P&gt;A library is assigned and that is what you have with&amp;nbsp;&lt;SPAN&gt;libname ss 'pathname' ;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/209685"&gt;@thanikondharish&lt;/a&gt; help those that have helped you, go back to all of your unsolved questions and confirm if they were solved.&amp;nbsp; You have a whole lot of questions that are very simple to answer that have been answered and are marked as not solved.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Give create to others, learn by reading and please do some searching.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jan 2019 14:28:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-it-applying/m-p/526056#M143172</guid>
      <dc:creator>VDD</dc:creator>
      <dc:date>2019-01-10T14:28:22Z</dc:date>
    </item>
    <item>
      <title>Re: how it applying</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-it-applying/m-p/526059#M143174</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PROC SQL is part of Base SAS that is used for SQL. Please check this &lt;A href="http://support.sas.com/documentation/cdl//en/sqlproc/69822/HTML/default/viewer.htm#p1typbj1zqaum2n13o7mph0tdqsc.htm" target="_self"&gt;link&lt;/A&gt; to see what it can do.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jan 2019 14:35:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-it-applying/m-p/526059#M143174</guid>
      <dc:creator>SuryaKiran</dc:creator>
      <dc:date>2019-01-10T14:35:29Z</dc:date>
    </item>
    <item>
      <title>Re: how it applying</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-it-applying/m-p/526063#M143175</link>
      <description>&lt;P&gt;Interesting, I didn't know you could assign a lib ref within a Proc SQL step like that. Does&amp;nbsp;this mean that you can pretty much use the libname statement almost anywhere? I know by convention, it's usually at the top of programming code.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jan 2019 14:50:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-it-applying/m-p/526063#M143175</guid>
      <dc:creator>cosmid</dc:creator>
      <dc:date>2019-01-10T14:50:35Z</dc:date>
    </item>
    <item>
      <title>Re: how it applying</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-it-applying/m-p/526067#M143178</link>
      <description>&lt;P&gt;&lt;EM&gt;"&lt;STRONG&gt;Does&amp;nbsp;this mean that you can pretty much use the libname statement almost anywhere?&lt;/STRONG&gt;&amp;nbsp;"&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;- Libname statement is a global statement and you can use global statements anywhere in a SAS program. This applies to all global statements. Global statements are not executable; they take effect as soon as SAS compiles program statements.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;With the above being said, I do not like the practice of using anywhere that causes difficulty in reading ease. Basically, the good thing is that it is flexible. That's about it&lt;/SPAN&gt;&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/253026"&gt;@cosmid&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Interesting, I didn't know you could assign a lib ref within a Proc SQL step like that.&lt;STRONG&gt; Does&amp;nbsp;this mean that you can pretty much use the libname statement almost anywhere?&lt;/STRONG&gt; I know by convention, it's usually at the top of programming code.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jan 2019 14:57:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-it-applying/m-p/526067#M143178</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2019-01-10T14:57:26Z</dc:date>
    </item>
    <item>
      <title>Re: how it applying</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-it-applying/m-p/526070#M143181</link>
      <description>&lt;P&gt;Thanks for the clarification! I forgot that it's a global statement.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jan 2019 15:01:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-it-applying/m-p/526070#M143181</guid>
      <dc:creator>cosmid</dc:creator>
      <dc:date>2019-01-10T15:01:07Z</dc:date>
    </item>
    <item>
      <title>Re: how it applying</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-it-applying/m-p/526081#M143186</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/253026"&gt;@cosmid&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Interesting, I didn't know you could assign a lib ref within a Proc SQL step like that. Does&amp;nbsp;this mean that you can pretty much use the libname statement almost anywhere? I know by convention, it's usually at the top of programming code.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;The library has to be defined before use.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I consider this particular behavior one of the SAS helpful interpretations of doing what we meant and not actually coded such as the warning about misspelled keywords such as accidentally using PROG instead of PROC.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jan 2019 15:59:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-it-applying/m-p/526081#M143186</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-01-10T15:59:32Z</dc:date>
    </item>
    <item>
      <title>Re: how it applying</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-it-applying/m-p/526082#M143187</link>
      <description>&lt;P&gt;Yes, I know it has to be defined before use. But thanks for pointing it out:)&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jan 2019 16:02:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-it-applying/m-p/526082#M143187</guid>
      <dc:creator>cosmid</dc:creator>
      <dc:date>2019-01-10T16:02:34Z</dc:date>
    </item>
  </channel>
</rss>

