<?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: Warning during PROC APPEND in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Warning-during-PROC-APPEND/m-p/843612#M333514</link>
    <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/30271"&gt;@totoleheros&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The OP has not been back to the forum since 2017. So likely no need to resurrect this 5-year-old thread.&lt;/P&gt;</description>
    <pubDate>Thu, 10 Nov 2022 15:57:21 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2022-11-10T15:57:21Z</dc:date>
    <item>
      <title>Warning during PROC APPEND</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Warning-during-PROC-APPEND/m-p/368042#M87713</link>
      <description>&lt;DIV class="sasWarning focus-line"&gt;Code:&lt;/DIV&gt;&lt;DIV class="sasWarning focus-line"&gt;Proc append base = amt3.separate1 DATA = amt3.Hyundai_Unique force;&lt;BR /&gt;run;&lt;/DIV&gt;&lt;DIV class="sasWarning focus-line"&gt;Warning Message I received:&lt;/DIV&gt;&lt;DIV class="sasWarning focus-line"&gt;WARNING: Variable Latest_Launch has format DDMMYY10. on the BASE data set and format DATE7. on the DATA data set. DDMMYY10. used.&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;WARNING: Variable Manufacturer has different lengths on BASE and DATA files (BASE 13 DATA 8).&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;WARNING: Variable Model has different lengths on BASE and DATA files (BASE 17 DATA 8).&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;WARNING: Variable Manufacturer_Model has different lengths on BASE and DATA files (BASE 33 DATA 19).&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;Any Solutions?.&lt;/DIV&gt;</description>
      <pubDate>Sun, 18 Jun 2017 04:32:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Warning-during-PROC-APPEND/m-p/368042#M87713</guid>
      <dc:creator>Sakthivel_Saran</dc:creator>
      <dc:date>2017-06-18T04:32:56Z</dc:date>
    </item>
    <item>
      <title>Re: Warning during PROC APPEND</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Warning-during-PROC-APPEND/m-p/368047#M87718</link>
      <description>&lt;P&gt;It is clear that lengths &amp;nbsp;and formats of both tables do not match. This will not cause any issue in your scenario.You can adjust the length and format of your data columns so that you do not warning. Or add nowarn to proc append statements, if you do not want to see warnings.&lt;/P&gt;</description>
      <pubDate>Sun, 18 Jun 2017 04:42:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Warning-during-PROC-APPEND/m-p/368047#M87718</guid>
      <dc:creator>kiranv_</dc:creator>
      <dc:date>2017-06-18T04:42:31Z</dc:date>
    </item>
    <item>
      <title>Re: Warning during PROC APPEND</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Warning-during-PROC-APPEND/m-p/368051#M87720</link>
      <description>&lt;P&gt;You have two types of warning.&lt;/P&gt;
&lt;P&gt;- different formats - anyway you can change format according to your needs.&lt;BR /&gt;&amp;nbsp; the format is used just to define how to display the date content.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;- as long as the BASE variable is longer then the DATA variable, you can be quiet.&lt;/P&gt;
&lt;P&gt;&amp;nbsp; If BASE is shorter there is a risk of truncating the content and as much as I remeber&lt;/P&gt;
&lt;P&gt;&amp;nbsp; you'll get an error.&lt;/P&gt;</description>
      <pubDate>Sun, 18 Jun 2017 05:38:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Warning-during-PROC-APPEND/m-p/368051#M87720</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2017-06-18T05:38:59Z</dc:date>
    </item>
    <item>
      <title>Re: Warning during PROC APPEND</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Warning-during-PROC-APPEND/m-p/368057#M87725</link>
      <description>&lt;P&gt;In the interest of writing clean code, follow the code path (backwards) that created&amp;nbsp;&lt;SPAN&gt;amt3.Hyundai_Unique and make sure that the variables in question have consistent attributes.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 18 Jun 2017 06:38:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Warning-during-PROC-APPEND/m-p/368057#M87725</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-06-18T06:38:30Z</dc:date>
    </item>
    <item>
      <title>Re: Warning during PROC APPEND</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Warning-during-PROC-APPEND/m-p/843541#M333485</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/149224"&gt;@Sakthivel_Saran&lt;/a&gt;,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;to suppress those warning, use NOWARN option on proc append&amp;nbsp; statement&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;Proc append base = amt3.separate1 DATA = amt3.Hyundai_Unique force NOWARN ;&amp;nbsp;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;run;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="helvetica"&gt;&lt;SPAN&gt;(option exists since at least sas9.2 -&amp;nbsp;&lt;A href="https://support.sas.com/documentation/cdl/en/proc/61895/HTML/default/viewer.htm#a000070936.htm" target="_blank"&gt;https://support.sas.com/documentation/cdl/en/proc/61895/HTML/default/viewer.htm#a000070936.htm&lt;/A&gt;)&amp;nbsp;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Nov 2022 08:46:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Warning-during-PROC-APPEND/m-p/843541#M333485</guid>
      <dc:creator>totoleheros</dc:creator>
      <dc:date>2022-11-10T08:46:30Z</dc:date>
    </item>
    <item>
      <title>Re: Warning during PROC APPEND</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Warning-during-PROC-APPEND/m-p/843612#M333514</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/30271"&gt;@totoleheros&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The OP has not been back to the forum since 2017. So likely no need to resurrect this 5-year-old thread.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Nov 2022 15:57:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Warning-during-PROC-APPEND/m-p/843612#M333514</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2022-11-10T15:57:21Z</dc:date>
    </item>
  </channel>
</rss>

