<?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 difference between MISSOVER and TRUNCOVER  options in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/difference-between-MISSOVER-and-TRUNCOVER-options/m-p/18084#M2679</link>
    <description>can anyone explain the difference between MISSOVER and TRUNCOVER  options with example.Both produce same results i guess.In what way they both differ?</description>
    <pubDate>Thu, 15 May 2008 15:36:00 GMT</pubDate>
    <dc:creator>deleted_user</dc:creator>
    <dc:date>2008-05-15T15:36:00Z</dc:date>
    <item>
      <title>difference between MISSOVER and TRUNCOVER  options</title>
      <link>https://communities.sas.com/t5/SAS-Programming/difference-between-MISSOVER-and-TRUNCOVER-options/m-p/18084#M2679</link>
      <description>can anyone explain the difference between MISSOVER and TRUNCOVER  options with example.Both produce same results i guess.In what way they both differ?</description>
      <pubDate>Thu, 15 May 2008 15:36:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/difference-between-MISSOVER-and-TRUNCOVER-options/m-p/18084#M2679</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2008-05-15T15:36:00Z</dc:date>
    </item>
    <item>
      <title>Re: difference between MISSOVER and TRUNCOVER  options</title>
      <link>https://communities.sas.com/t5/SAS-Programming/difference-between-MISSOVER-and-TRUNCOVER-options/m-p/18085#M2680</link>
      <description>Hi:&lt;BR /&gt;
  In the documentation, there is a topic:&lt;BR /&gt;
"Starting with Raw Data: Beyond the Basics"&lt;BR /&gt;
and in that topic is a sub-topic:&lt;BR /&gt;
"Problem Solving: When an Input Record Unexpectedly Does Not Have Enough Values"&lt;BR /&gt;
&lt;BR /&gt;
That section of the doc has very thorough examples of MISSOVER, TRUNCOVER, FLOWOVER and STOPOVER. With data and code....&lt;BR /&gt;
&lt;BR /&gt;
I recommend this section. If you search for the string "TRUNCOVER" in the on-line doc, you should find the "Starting with Raw Data" topic and can follow links from there.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Thu, 15 May 2008 16:25:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/difference-between-MISSOVER-and-TRUNCOVER-options/m-p/18085#M2680</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2008-05-15T16:25:29Z</dc:date>
    </item>
    <item>
      <title>Re: difference between MISSOVER and TRUNCOVER  options</title>
      <link>https://communities.sas.com/t5/SAS-Programming/difference-between-MISSOVER-and-TRUNCOVER-options/m-p/18086#M2681</link>
      <description>hi cynthia,&lt;BR /&gt;
thanks for the help..can you give me the link of the mentioned online doc.</description>
      <pubDate>Thu, 15 May 2008 16:53:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/difference-between-MISSOVER-and-TRUNCOVER-options/m-p/18086#M2681</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2008-05-15T16:53:00Z</dc:date>
    </item>
    <item>
      <title>Re: difference between MISSOVER and TRUNCOVER  options</title>
      <link>https://communities.sas.com/t5/SAS-Programming/difference-between-MISSOVER-and-TRUNCOVER-options/m-p/18087#M2682</link>
      <description>The online documentation can be found at: &lt;A href="http://support.sas.com/documentation/onlinedoc/base/index3.html" target="_blank"&gt;http://support.sas.com/documentation/onlinedoc/base/index3.html&lt;/A&gt;.&lt;BR /&gt;
&lt;BR /&gt;
Direct link to the language reference:  &lt;A href="http://support.sas.com/onlinedoc/913/docMainpage.jsp?_topic=lrdict.hlp/a002295669.htm" target="_blank"&gt;http://support.sas.com/onlinedoc/913/docMainpage.jsp?_topic=lrdict.hlp/a002295669.htm&lt;/A&gt;</description>
      <pubDate>Fri, 16 May 2008 05:43:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/difference-between-MISSOVER-and-TRUNCOVER-options/m-p/18087#M2682</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2008-05-16T05:43:01Z</dc:date>
    </item>
    <item>
      <title>Re: difference between MISSOVER and TRUNCOVER  options</title>
      <link>https://communities.sas.com/t5/SAS-Programming/difference-between-MISSOVER-and-TRUNCOVER-options/m-p/18088#M2683</link>
      <description>hey..thanks a lot..for giving the website...</description>
      <pubDate>Fri, 16 May 2008 14:58:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/difference-between-MISSOVER-and-TRUNCOVER-options/m-p/18088#M2683</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2008-05-16T14:58:53Z</dc:date>
    </item>
    <item>
      <title>Re: difference between MISSOVER and TRUNCOVER  options</title>
      <link>https://communities.sas.com/t5/SAS-Programming/difference-between-MISSOVER-and-TRUNCOVER-options/m-p/18089#M2684</link>
      <description>The main difference between MISSOVER and TRUNCOVER occurs when you have variable length records and are using formatted or column input.  TRUNCOVER reads "partial" data that falls at the end of the record, whereas MISSOVER sets the value to missing. &lt;BR /&gt;
&lt;BR /&gt;
An example to further clarify: An INPUT statement requests to read exactly 5 bytes starting at position 18, but a data record is only 20 bytes long.  TRUNCOVER will treat bytes 18-20 as valid data. MISSOVER sees that bytes 21 and 22 are not present and considers the field to be invalid.  If the record had been 17 bytes long, both TRUNCOVER and MISSOVER would produce a missing value.&lt;BR /&gt;
&lt;BR /&gt;
Variable length records were pretty rare in the early mainframe days of SAS, but they are nearly universal in Windows and Unix-family systems.  As a general rule, TRUNCOVER should be used in most modern SAS applications.</description>
      <pubDate>Tue, 20 May 2008 18:58:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/difference-between-MISSOVER-and-TRUNCOVER-options/m-p/18089#M2684</guid>
      <dc:creator>WarrenR_SAS</dc:creator>
      <dc:date>2008-05-20T18:58:55Z</dc:date>
    </item>
  </channel>
</rss>

