<?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: OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK; in SAS Software for Learning Community</title>
    <link>https://communities.sas.com/t5/SAS-Software-for-Learning/What-does-this-mean-in-a-SAS-Studio-log-file-OPTIONS-NONOTES/m-p/445137#M63</link>
    <description>&lt;P&gt;Does SAS Studio give you an option to choose NOT to hide that bit of the log?&amp;nbsp; I always get nervous when stuff is hidden from me, code or otherwise.&lt;/P&gt;
&lt;P&gt;: )&lt;/P&gt;</description>
    <pubDate>Tue, 13 Mar 2018 12:29:17 GMT</pubDate>
    <dc:creator>Quentin</dc:creator>
    <dc:date>2018-03-13T12:29:17Z</dc:date>
    <item>
      <title>What does this mean in a SAS Studio log file? OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/What-does-this-mean-in-a-SAS-Studio-log-file-OPTIONS-NONOTES/m-p/444636#M60</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am trying to understand the RUN statement. Does it read above for other RUN statement and or the beginning of the file which contains a hidden line (OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;)?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Example of the log file in SAS Studio:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV class="sasSource"&gt;1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;72&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;73 /****************************************************************/&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;74 /* The INFILE statement uses a Microsoft Windows path. */&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;75 /* */&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;76 /* For UNIX, Linux, SAS University Edition, and SAS on Demand: */&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;77 /* Change the INFILE statement to: */&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;78 /* infile "&amp;amp;path/newemps.csv" dlm=','; */&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;79 /* */&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;80 /* For z/OS: */&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;81 /* Change the INFILE statement to: */&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;82 /* infile "&amp;amp;path..rawdata(newemps)" dlm=','; */&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;83 /****************************************************************/&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;84&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;85 data work.newsalesemps;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;86 length First_Name $ 12 Last_Name $ 18&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;87 Job_Title $ 25;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;88 infile "/folders/myfolders/newemps.csv" dlm=',';&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;89 input First_Name $ Last_Name $&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;90 Job_Title $ Salary /*numeric*/;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;91 run;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;P&gt;Cheers Conrad&lt;/P&gt;</description>
      <pubDate>Mon, 07 Jun 2021 19:08:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/What-does-this-mean-in-a-SAS-Studio-log-file-OPTIONS-NONOTES/m-p/444636#M60</guid>
      <dc:creator>conrad_thiele</dc:creator>
      <dc:date>2021-06-07T19:08:54Z</dc:date>
    </item>
    <item>
      <title>Re: OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/What-does-this-mean-in-a-SAS-Studio-log-file-OPTIONS-NONOTES/m-p/444666#M61</link>
      <description>&lt;P&gt;Your front-end (SAS Studio) sends code automatically before each of your submits that initializes this individual submit. In order to keep your log clean, log output is prevented by the first line. In line 71 (which is still "hidden"), there's another options statement that reverts this, so you get log output starting at line 72.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;Note from Community Manager&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/34537"&gt;@BeverlyBrown&lt;/a&gt;&amp;nbsp;on 6/7/21:&amp;nbsp;&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;For additional details, see &lt;A href="https://go.documentation.sas.com/doc/en/sasstudiocdc/3.8/pgmsascdc/basess/p0rgzxi5r1euj0n14epck6v9l2hm.htm" target="_self"&gt;Documentation on Suppressing Information in the SAS Log.&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Jun 2021 19:15:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/What-does-this-mean-in-a-SAS-Studio-log-file-OPTIONS-NONOTES/m-p/444666#M61</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-06-07T19:15:31Z</dc:date>
    </item>
    <item>
      <title>Re: OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/What-does-this-mean-in-a-SAS-Studio-log-file-OPTIONS-NONOTES/m-p/445129#M62</link>
      <description>Makes sense &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;</description>
      <pubDate>Tue, 13 Mar 2018 12:13:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/What-does-this-mean-in-a-SAS-Studio-log-file-OPTIONS-NONOTES/m-p/445129#M62</guid>
      <dc:creator>conrad_thiele</dc:creator>
      <dc:date>2018-03-13T12:13:19Z</dc:date>
    </item>
    <item>
      <title>Re: OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/What-does-this-mean-in-a-SAS-Studio-log-file-OPTIONS-NONOTES/m-p/445137#M63</link>
      <description>&lt;P&gt;Does SAS Studio give you an option to choose NOT to hide that bit of the log?&amp;nbsp; I always get nervous when stuff is hidden from me, code or otherwise.&lt;/P&gt;
&lt;P&gt;: )&lt;/P&gt;</description>
      <pubDate>Tue, 13 Mar 2018 12:29:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/What-does-this-mean-in-a-SAS-Studio-log-file-OPTIONS-NONOTES/m-p/445137#M63</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2018-03-13T12:29:17Z</dc:date>
    </item>
  </channel>
</rss>

