<?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 sort not working in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-sort-not-working/m-p/146179#M11407</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;"The program doesn't crash, the log doesn't update.."&amp;nbsp; How do you know that the process has finished?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 16 Nov 2013 00:35:02 GMT</pubDate>
    <dc:creator>Patrick</dc:creator>
    <dc:date>2013-11-16T00:35:02Z</dc:date>
    <item>
      <title>Proc sort not working</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-sort-not-working/m-p/146178#M11406</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Several proc sort procedures in my code properly sort datasets with a large number of observations (30 million +). However, once it reaches a certain dataset, the proc sort stalls. The program doesn't crash, the log doesn't update, and the dataset doesn't sort. The locked outfile file appears in the output libname location, however the size is 0 kbs. This is a simple procedure: proc sort, by variables, and run command.&amp;nbsp; This dataset is quite larger than the others, but not by much. The by variables exist and have normal values. Any clue as to what may be happening?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;Rahul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 Nov 2013 00:05:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-sort-not-working/m-p/146178#M11406</guid>
      <dc:creator>rahgonda</dc:creator>
      <dc:date>2013-11-16T00:05:16Z</dc:date>
    </item>
    <item>
      <title>Re: Proc sort not working</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-sort-not-working/m-p/146179#M11407</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;"The program doesn't crash, the log doesn't update.."&amp;nbsp; How do you know that the process has finished?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 Nov 2013 00:35:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-sort-not-working/m-p/146179#M11407</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2013-11-16T00:35:02Z</dc:date>
    </item>
    <item>
      <title>Re: Proc sort not working</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-sort-not-working/m-p/146180#M11408</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;FWIW: If you are on a Window's server, and your data are on a different drive than the one where you have SAS installed, you may want to try moving the file onto the same drive where SAS is installed and trying it from there.&amp;nbsp; I.e., it may be a Window's problem!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 Nov 2013 01:12:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-sort-not-working/m-p/146180#M11408</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2013-11-16T01:12:46Z</dc:date>
    </item>
    <item>
      <title>Re: Proc sort not working</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-sort-not-working/m-p/146181#M11409</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If the data is large you may want to investigate options such as TAGSORT or options that depend on your OS.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Nov 2013 16:54:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-sort-not-working/m-p/146181#M11409</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2013-11-18T16:54:49Z</dc:date>
    </item>
    <item>
      <title>Re: Proc sort not working</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-sort-not-working/m-p/146182#M11410</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe try running the sort with fewer records to see if there isn't something other than the size causing the long response, E.g.:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;proc sort data=have(obs=100)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; out=want;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; by var1;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amir.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Nov 2013 18:30:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-sort-not-working/m-p/146182#M11410</guid>
      <dc:creator>Amir</dc:creator>
      <dc:date>2013-11-18T18:30:23Z</dc:date>
    </item>
  </channel>
</rss>

