<?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: Proc Export - how to suppress - log window full messages in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Proc-Export-how-to-suppress-log-window-full-messages/m-p/824768#M325743</link>
    <description>&lt;P&gt;Save to a file.&lt;/P&gt;
&lt;P&gt;Then share the code part and the first 50 or so lines that I would expect to be data related messages.&lt;/P&gt;
&lt;P&gt;Paste what ever text you share into a text box opened on the forum with the &amp;lt;/&amp;gt; icon to preserve formatting of the text as the main message windows will reformat pasted text.&lt;/P&gt;</description>
    <pubDate>Thu, 21 Jul 2022 20:05:00 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2022-07-21T20:05:00Z</dc:date>
    <item>
      <title>Proc Export - how to suppress - log window full messages</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Export-how-to-suppress-log-window-full-messages/m-p/824734#M325717</link>
      <description>&lt;P&gt;When I run my program first time, proc export gives me messages like log window full..&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;windows is full and must be cleared. Select&lt;/P&gt;
&lt;P&gt;File, Print, Save, Clear.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For next several runs it does not give me that message again in the SAS session.&lt;/P&gt;
&lt;P&gt;How can I suppress that message programmatically or any other configurations.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Thu, 21 Jul 2022 17:41:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Export-how-to-suppress-log-window-full-messages/m-p/824734#M325717</guid>
      <dc:creator>Stalk</dc:creator>
      <dc:date>2022-07-21T17:41:19Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Export - how to suppress - log window full messages</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Export-how-to-suppress-log-window-full-messages/m-p/824737#M325719</link>
      <description>&lt;P&gt;Why would PROC EXPORT generate a lot of information to the log?&amp;nbsp; Exactly what code did you run?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you see any of the actual log messages?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you need to you can temporarily route the log messages to a separate file you can avoid the messages about clearing the log. Make sure to route it to a disk with enough spaces.&amp;nbsp; And also NOT to the disk used by the operating system since if the actual issue an infinite loop of some sort you don't want to crash your machine.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc printto log='some file name.log' ;
run;
proc export ....
run;
proc printto log=log;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Then you can look at the log with some text editor and try to determine what it is is saying and perhaps why.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Jul 2022 17:53:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Export-how-to-suppress-log-window-full-messages/m-p/824737#M325719</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2022-07-21T17:53:31Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Export - how to suppress - log window full messages</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Export-how-to-suppress-log-window-full-messages/m-p/824768#M325743</link>
      <description>&lt;P&gt;Save to a file.&lt;/P&gt;
&lt;P&gt;Then share the code part and the first 50 or so lines that I would expect to be data related messages.&lt;/P&gt;
&lt;P&gt;Paste what ever text you share into a text box opened on the forum with the &amp;lt;/&amp;gt; icon to preserve formatting of the text as the main message windows will reformat pasted text.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Jul 2022 20:05:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Export-how-to-suppress-log-window-full-messages/m-p/824768#M325743</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2022-07-21T20:05:00Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Export - how to suppress - log window full messages</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Export-how-to-suppress-log-window-full-messages/m-p/824774#M325746</link>
      <description>&lt;P&gt;Fix the cause of the messages not remove them. They are there for a reason and just ignoring them is not good programming practice. Post a copy of your SAS log and a sample of the messages being generated so we can see what is going on.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Jul 2022 20:13:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Export-how-to-suppress-log-window-full-messages/m-p/824774#M325746</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2022-07-21T20:13:43Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Export - how to suppress - log window full messages</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Export-how-to-suppress-log-window-full-messages/m-p/825817#M326172</link>
      <description>&lt;P&gt;Proc printto allowed me to create a file and look the warnings in details. One of the text field has special characters and its causing the issue.&lt;/P&gt;
&lt;P&gt;Thank you all.&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jul 2022 02:38:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Export-how-to-suppress-log-window-full-messages/m-p/825817#M326172</guid>
      <dc:creator>Stalk</dc:creator>
      <dc:date>2022-07-28T02:38:36Z</dc:date>
    </item>
  </channel>
</rss>

