<?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: SAS DI issue of SORT validation. But in SAS EG it works in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/SAS-DI-issue-of-SORT-validation-But-in-SAS-EG-it-works/m-p/746438#M234155</link>
    <description>&lt;P&gt;Hi AMSAS,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can I call you ? I don't know how to insert my private number.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But my email ID is &lt;A href="mailto:aka.amit@gmail.com" target="_blank"&gt;aka.amit@gmail.com&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you okay for me to call.&lt;/P&gt;</description>
    <pubDate>Tue, 08 Jun 2021 12:34:31 GMT</pubDate>
    <dc:creator>Amitkmr1979</dc:creator>
    <dc:date>2021-06-08T12:34:31Z</dc:date>
    <item>
      <title>SAS DI issue of SORT validation. But in SAS EG it works</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-DI-issue-of-SORT-validation-But-in-SAS-EG-it-works/m-p/746417#M234146</link>
      <description>&lt;P&gt;Dear Friends,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am facing typical issue. My PROC SQL extraction and join works in EG, but not in DI Studio.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Amitkmr1979_0-1623144708876.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/60115i7BBB8A8ED2C47044/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Amitkmr1979_0-1623144708876.png" alt="Amitkmr1979_0-1623144708876.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;But in EG the join and extract is fine.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Anyone faced this before?&lt;/P&gt;</description>
      <pubDate>Tue, 08 Jun 2021 09:32:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-DI-issue-of-SORT-validation-But-in-SAS-EG-it-works/m-p/746417#M234146</guid>
      <dc:creator>Amitkmr1979</dc:creator>
      <dc:date>2021-06-08T09:32:46Z</dc:date>
    </item>
    <item>
      <title>Re: SAS DI issue of SORT validation. But in SAS EG it works</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-DI-issue-of-SORT-validation-But-in-SAS-EG-it-works/m-p/746425#M234149</link>
      <description>&lt;P class="cs2654AE3A"&gt;&lt;SPAN class="csF53863FF"&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/303439"&gt;@Amitkmr1979&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;I pulled the following explanation from a track opened yesterday (this wouldn't happen to be you also?), hopefully this will help you understand it:&lt;BR /&gt;&lt;BR /&gt;You will receive this error message when a procedure requires the data to be in a certain sorted order. &amp;nbsp;The SORTEDBY flag on the table indicates the order of the data. &amp;nbsp; &amp;nbsp;However, the actual data in the table is not in the correct sorted order. &amp;nbsp;This can happen when the SORTEDBY option is used to manually specify the sort order of a table. &amp;nbsp;A flag called VALIDATED is set on the table to indicate if the data has been checked for correct order. &amp;nbsp;The VALIDATED flag will be set to NO on the dataset when you use the SORTEDBY option to set the sort order of the table. &amp;nbsp;In this case, SAS does not verify the data is in the correct sort order. &amp;nbsp;The VALIDATED option will be YES when the table has been sorted by the SORT or SQL procedure. &amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="cs2654AE3A"&gt;&lt;SPAN class="csF53863FF"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="cs2654AE3A"&gt;&lt;SPAN class="csF53863FF"&gt;You can execute the following sample code from the SAS Data Integration Studio Code Editor to find the settings for the table:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="cs2654AE3A"&gt;&lt;SPAN class="csF53863FF"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="cs2654AE3A"&gt;&lt;SPAN class="csF53863FF"&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;libname &amp;lt;libref&amp;gt; ....; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;/*libname statement to assign the library containing the table*/&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="cs2654AE3A"&gt;&lt;SPAN class="csF53863FF"&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;proc contents &amp;lt;libref&amp;gt;.&amp;lt;tablename&amp;gt;;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="cs2654AE3A"&gt;&lt;SPAN class="csF53863FF"&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;run;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="cs2654AE3A"&gt;&lt;SPAN class="csF53863FF"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="cs2654AE3A"&gt;&lt;SPAN class="csF53863FF"&gt;The output will be similar to the following:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="cs2654AE3A"&gt;&lt;SPAN class="csF53863FF"&gt;&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="data.png" style="width: 404px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/60116i226ED0963EFFF165/image-size/large?v=v2&amp;amp;px=999" role="button" title="data.png" alt="data.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="cs2654AE3A"&gt;&lt;SPAN class="csF53863FF"&gt;You should sort the data in the required order using the SORT or SQL procedure to avoid the error message.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="cs2654AE3A"&gt;&lt;SPAN class="csF53863FF"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="cs2654AE3A"&gt;&lt;SPAN class="csF53863FF"&gt;Please send a copy of the SAS program and a copy of the PROC CONTENTS of the table if this information does not resolve the issue.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Jun 2021 10:33:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-DI-issue-of-SORT-validation-But-in-SAS-EG-it-works/m-p/746425#M234149</guid>
      <dc:creator>AMSAS</dc:creator>
      <dc:date>2021-06-08T10:33:36Z</dc:date>
    </item>
    <item>
      <title>Re: SAS DI issue of SORT validation. But in SAS EG it works</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-DI-issue-of-SORT-validation-But-in-SAS-EG-it-works/m-p/746438#M234155</link>
      <description>&lt;P&gt;Hi AMSAS,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can I call you ? I don't know how to insert my private number.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But my email ID is &lt;A href="mailto:aka.amit@gmail.com" target="_blank"&gt;aka.amit@gmail.com&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you okay for me to call.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Jun 2021 12:34:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-DI-issue-of-SORT-validation-But-in-SAS-EG-it-works/m-p/746438#M234155</guid>
      <dc:creator>Amitkmr1979</dc:creator>
      <dc:date>2021-06-08T12:34:31Z</dc:date>
    </item>
    <item>
      <title>Re: SAS DI issue of SORT validation. But in SAS EG it works</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-DI-issue-of-SORT-validation-But-in-SAS-EG-it-works/m-p/746445#M234161</link>
      <description>&lt;P&gt;I cant be more than happy. you were right, the earlier mail was from my colleague which was sent. I am just trying to help them but I am continents apart.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It resolved the issue.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Jun 2021 13:20:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-DI-issue-of-SORT-validation-But-in-SAS-EG-it-works/m-p/746445#M234161</guid>
      <dc:creator>Amitkmr1979</dc:creator>
      <dc:date>2021-06-08T13:20:53Z</dc:date>
    </item>
  </channel>
</rss>

