<?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: Issue while running proc print in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Issue-while-running-proc-print/m-p/489859#M127997</link>
    <description>&lt;P&gt;Worked fine for me, so I suspect you have an issue elsewhere, or didn't submit the colon as suggested. I would end the process and restart SAS if necessary. A program like this should complete in less than a second. This of course, assumes, your text file isn't a few GB or something.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt; 1          OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
 68         
 69         data highlow;
 70         infile cards;
 71         input city $ state $
 72         / NormalHigh NormalLow
 73         #3 RecordHigh RecordLow;
 74         
 75         cards;
 
 NOTE: The data set WORK.HIGHLOW has 3 observations and 6 variables.
 NOTE: DATA statement used (Total process time):
       real time           0.01 seconds
       cpu time            0.01 seconds
       
 
 85         ;;;;
 86         run;
 87         proc print data=highlow;
 88         Title 'High and Low Temperatures for July';
 89         run;
 
 NOTE: There were 3 observations read from the data set WORK.HIGHLOW.
 NOTE: PROCEDURE PRINT used (Total process time):
       real time           0.03 seconds
       cpu time            0.03 seconds&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 26 Aug 2018 02:43:45 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2018-08-26T02:43:45Z</dc:date>
    <item>
      <title>Issue while running proc print</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Issue-while-running-proc-print/m-p/489850#M127994</link>
      <description>&lt;P&gt;Hello Friends&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have issue running this query.&amp;nbsp; It keep running.&amp;nbsp; Is there anything wrong with this script?&amp;nbsp; Your help is highly appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data highlow;&lt;BR /&gt;infile 'C:\Users\Documents\My SAS Files(32)\democode\temperature.txt';&lt;BR /&gt;input city $ state $&lt;BR /&gt;/ NormalHigh NormalLow&lt;BR /&gt;#3 RecordHigh RecordLow;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;proc print data=highlow;&lt;BR /&gt;Title 'High and Low Temperatures for July';&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;this is the date:&lt;/P&gt;&lt;P&gt;Nome AK&lt;BR /&gt;55 44&lt;BR /&gt;88 29&lt;BR /&gt;Miami FL&lt;BR /&gt;90 75&lt;BR /&gt;97 65&lt;BR /&gt;Releigh NC&lt;BR /&gt;88 68&lt;BR /&gt;105 50&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 25 Aug 2018 23:01:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Issue-while-running-proc-print/m-p/489850#M127994</guid>
      <dc:creator>sas_td2016</dc:creator>
      <dc:date>2018-08-25T23:01:25Z</dc:date>
    </item>
    <item>
      <title>Re: Issue while running proc print</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Issue-while-running-proc-print/m-p/489852#M127995</link>
      <description>&lt;P&gt;Please post your log when you have issues.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Are you sure it is in PROC PRINT and not at first step?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I suspect the special characters in the input path are causing the issue.&lt;/P&gt;
&lt;P&gt;Try to rename the path into&amp;nbsp;&lt;STRONG&gt;&lt;SPAN&gt;&amp;nbsp;'C:\Users\Documents\My SAS&lt;/SPAN&gt;&lt;/STRONG&gt; Files(32)\democode\' - (droping the '&lt;STRONG&gt;(32)'&lt;/STRONG&gt;).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 26 Aug 2018 00:29:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Issue-while-running-proc-print/m-p/489852#M127995</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2018-08-26T00:29:07Z</dc:date>
    </item>
    <item>
      <title>Re: Issue while running proc print</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Issue-while-running-proc-print/m-p/489855#M127996</link>
      <description>otherwise, it may be that you have not submitted the last semicolon ';' - then sas in not running but waiting to close the RUN statement.</description>
      <pubDate>Sun, 26 Aug 2018 01:10:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Issue-while-running-proc-print/m-p/489855#M127996</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2018-08-26T01:10:26Z</dc:date>
    </item>
    <item>
      <title>Re: Issue while running proc print</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Issue-while-running-proc-print/m-p/489859#M127997</link>
      <description>&lt;P&gt;Worked fine for me, so I suspect you have an issue elsewhere, or didn't submit the colon as suggested. I would end the process and restart SAS if necessary. A program like this should complete in less than a second. This of course, assumes, your text file isn't a few GB or something.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt; 1          OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
 68         
 69         data highlow;
 70         infile cards;
 71         input city $ state $
 72         / NormalHigh NormalLow
 73         #3 RecordHigh RecordLow;
 74         
 75         cards;
 
 NOTE: The data set WORK.HIGHLOW has 3 observations and 6 variables.
 NOTE: DATA statement used (Total process time):
       real time           0.01 seconds
       cpu time            0.01 seconds
       
 
 85         ;;;;
 86         run;
 87         proc print data=highlow;
 88         Title 'High and Low Temperatures for July';
 89         run;
 
 NOTE: There were 3 observations read from the data set WORK.HIGHLOW.
 NOTE: PROCEDURE PRINT used (Total process time):
       real time           0.03 seconds
       cpu time            0.03 seconds&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 26 Aug 2018 02:43:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Issue-while-running-proc-print/m-p/489859#M127997</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-08-26T02:43:45Z</dc:date>
    </item>
    <item>
      <title>Re: Issue while running proc print</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Issue-while-running-proc-print/m-p/489895#M128020</link>
      <description>&lt;P&gt;Thanks everyone for the reply.&amp;nbsp; This problem is solved.&amp;nbsp; I restarted SAS and it works.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again Friends&lt;/P&gt;</description>
      <pubDate>Sun, 26 Aug 2018 12:08:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Issue-while-running-proc-print/m-p/489895#M128020</guid>
      <dc:creator>sas_td2016</dc:creator>
      <dc:date>2018-08-26T12:08:07Z</dc:date>
    </item>
  </channel>
</rss>

