<?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: Strange Warning Message When Accessing a Dataset Through Data Step in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Strange-Warning-Message-When-Accessing-a-Dataset-Through-Data/m-p/298529#M62801</link>
    <description>&lt;P&gt;Integrity constraints are defined so that operations that &lt;U&gt;change&lt;/U&gt; the dataset adhere to specific rules. Since you do not intend to write to the dataset, but only want to read from it, you can safely ignore that WARNING.&lt;/P&gt;
&lt;P&gt;I would not be surprised if digging deeper lets us find a SAS system option that even suppresses such WARNINGs.&lt;/P&gt;</description>
    <pubDate>Thu, 15 Sep 2016 06:51:29 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2016-09-15T06:51:29Z</dc:date>
    <item>
      <title>Strange Warning Message When Accessing a Dataset Through Data Step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Strange-Warning-Message-When-Accessing-a-Dataset-Through-Data/m-p/298474#M62779</link>
      <description>&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm using SAS 9.2 and I'm curious about a particular message in the log&amp;nbsp;when accessing a particular dataset through data step.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When the data step is run, the log gives the following warning message&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Data Step:&lt;/P&gt;&lt;PRE&gt;data aa;
set input.dataset;
run;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Message:&lt;/P&gt;&lt;P&gt;"WARNING: Integrity constraints cannot be processed for file INPUT.DATASET because its encoding&lt;/P&gt;&lt;P&gt;does not match the session encoding or the file is in a format native to another host,&lt;/P&gt;&lt;P&gt;such as HP_UX_64, RS_6000_AIX_64, SOLARIS_64, HP_IA64."&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, when I access the dataset through PROC SQL, it gave no such message.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PROC SQL:&lt;/P&gt;&lt;PRE&gt;proc sql;
  create table bb as 
    select * from input.dataset;
quit;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As such, what is the message trying to say? And more importantly,&amp;nbsp;when coming across such a message, is it okay to ignore it and use PROC SQL instead?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many thanks.&lt;/P&gt;&lt;P&gt;Ching Wee&lt;/P&gt;</description>
      <pubDate>Thu, 15 Sep 2016 00:54:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Strange-Warning-Message-When-Accessing-a-Dataset-Through-Data/m-p/298474#M62779</guid>
      <dc:creator>ching_wee_lim</dc:creator>
      <dc:date>2016-09-15T00:54:01Z</dc:date>
    </item>
    <item>
      <title>Re: Strange Warning Message When Accessing a Dataset Through Data Step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Strange-Warning-Message-When-Accessing-a-Dataset-Through-Data/m-p/298504#M62789</link>
      <description>&lt;P&gt;Refer to this post.&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/kb/35/613.html" target="_blank"&gt;http://support.sas.com/kb/35/613.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Sep 2016 04:53:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Strange-Warning-Message-When-Accessing-a-Dataset-Through-Data/m-p/298504#M62789</guid>
      <dc:creator>RahulG</dc:creator>
      <dc:date>2016-09-15T04:53:48Z</dc:date>
    </item>
    <item>
      <title>Re: Strange Warning Message When Accessing a Dataset Through Data Step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Strange-Warning-Message-When-Accessing-a-Dataset-Through-Data/m-p/298506#M62791</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/1751"&gt;@RahulG﻿&lt;/a&gt;&amp;nbsp;I dont how that link&amp;nbsp;helps.&lt;/P&gt;
&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/104677"&gt;@ching_wee_lim﻿&lt;/a&gt;&amp;nbsp;I can't think of a reason why reading the table one way or another should yield different behaviours. Best to ask Tech support imho.&lt;/P&gt;</description>
      <pubDate>Thu, 15 Sep 2016 05:12:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Strange-Warning-Message-When-Accessing-a-Dataset-Through-Data/m-p/298506#M62791</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2016-09-15T05:12:24Z</dc:date>
    </item>
    <item>
      <title>Re: Strange Warning Message When Accessing a Dataset Through Data Step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Strange-Warning-Message-When-Accessing-a-Dataset-Through-Data/m-p/298515#M62796</link>
      <description>&lt;P&gt;The message says that the dataset was created on a different platform, eg. unix vs windows.&lt;/P&gt;&lt;P&gt;SAS recocnize the original platform and gives warning, just in case they are not completely compatible;&lt;/P&gt;&lt;P&gt;Usually you can ignore it until you find some suspicious fenomena as text conversion or something else.&lt;/P&gt;</description>
      <pubDate>Thu, 15 Sep 2016 05:52:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Strange-Warning-Message-When-Accessing-a-Dataset-Through-Data/m-p/298515#M62796</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2016-09-15T05:52:41Z</dc:date>
    </item>
    <item>
      <title>Re: Strange Warning Message When Accessing a Dataset Through Data Step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Strange-Warning-Message-When-Accessing-a-Dataset-Through-Data/m-p/298529#M62801</link>
      <description>&lt;P&gt;Integrity constraints are defined so that operations that &lt;U&gt;change&lt;/U&gt; the dataset adhere to specific rules. Since you do not intend to write to the dataset, but only want to read from it, you can safely ignore that WARNING.&lt;/P&gt;
&lt;P&gt;I would not be surprised if digging deeper lets us find a SAS system option that even suppresses such WARNINGs.&lt;/P&gt;</description>
      <pubDate>Thu, 15 Sep 2016 06:51:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Strange-Warning-Message-When-Accessing-a-Dataset-Through-Data/m-p/298529#M62801</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2016-09-15T06:51:29Z</dc:date>
    </item>
    <item>
      <title>Re: Strange Warning Message When Accessing a Dataset Through Data Step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Strange-Warning-Message-When-Accessing-a-Dataset-Through-Data/m-p/298855#M62907</link>
      <description>&lt;P&gt;Thanks everyone for your insights!&amp;nbsp;I shall accept KurtBremser's answer.&lt;/P&gt;</description>
      <pubDate>Fri, 16 Sep 2016 05:17:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Strange-Warning-Message-When-Accessing-a-Dataset-Through-Data/m-p/298855#M62907</guid>
      <dc:creator>ching_wee_lim</dc:creator>
      <dc:date>2016-09-16T05:17:58Z</dc:date>
    </item>
    <item>
      <title>Re: Strange Warning Message When Accessing a Dataset Through Data Step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Strange-Warning-Message-When-Accessing-a-Dataset-Through-Data/m-p/298859#M62908</link>
      <description>&lt;P&gt;Hi Shmuel!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your insights! Sorry I'm new to SAS communities. I wanted to accept your answer as well but seems like I can only accept one &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Sep 2016 05:24:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Strange-Warning-Message-When-Accessing-a-Dataset-Through-Data/m-p/298859#M62908</guid>
      <dc:creator>ching_wee_lim</dc:creator>
      <dc:date>2016-09-16T05:24:36Z</dc:date>
    </item>
    <item>
      <title>Re: Strange Warning Message When Accessing a Dataset Through Data Step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Strange-Warning-Message-When-Accessing-a-Dataset-Through-Data/m-p/298861#M62909</link>
      <description>&lt;P&gt;Thanks KurtBremser!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So just curious, if I would want to &lt;U&gt;write&lt;/U&gt; into the dataset, I would have to find that particular rule that is causing the issue and fix it? And what are some examples of rules to fix?&lt;/P&gt;</description>
      <pubDate>Fri, 16 Sep 2016 05:32:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Strange-Warning-Message-When-Accessing-a-Dataset-Through-Data/m-p/298861#M62909</guid>
      <dc:creator>ching_wee_lim</dc:creator>
      <dc:date>2016-09-16T05:32:12Z</dc:date>
    </item>
    <item>
      <title>Re: Strange Warning Message When Accessing a Dataset Through Data Step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Strange-Warning-Message-When-Accessing-a-Dataset-Through-Data/m-p/298902#M62933</link>
      <description>see "understanding integrity constraints" at &lt;A href="http://support.sas.com/documentation/cdl/en/lrcon/68089/HTML/default/viewer.htm#p0te4txy6dyzs9n1csptlqoktu7m.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/lrcon/68089/HTML/default/viewer.htm#p0te4txy6dyzs9n1csptlqoktu7m.htm&lt;/A&gt;</description>
      <pubDate>Fri, 16 Sep 2016 10:00:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Strange-Warning-Message-When-Accessing-a-Dataset-Through-Data/m-p/298902#M62933</guid>
      <dc:creator>Peter_C</dc:creator>
      <dc:date>2016-09-16T10:00:44Z</dc:date>
    </item>
  </channel>
</rss>

