<?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: Query Error in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Query-Error/m-p/56184#M5887</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See this SAS Note about the NOTE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="active_link" href="http://support.sas.com/kb/4/308.html"&gt;http://support.sas.com/kb/4/308.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does your query include any grouping/aggregation?&amp;nbsp; You can get this message if you have SELECTed additional variables that are not included in the aggregations that you asked for.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Chris&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 05 Apr 2012 17:19:50 GMT</pubDate>
    <dc:creator>ChrisHemedinger</dc:creator>
    <dc:date>2012-04-05T17:19:50Z</dc:date>
    <item>
      <title>Query Error</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Query-Error/m-p/56183#M5886</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am getting the following error in Enterprise Guide 4.1 NOTE: The query requires remerging summary statistics back with the original data. ERROR: ORACLE execute error: ORA-01652: unable to extend temp segment by 128 in tablespace TMP_01. NOTE: Table WORK.QUERY_FOR_V_MKTDEC_PROVISIONS created, with 0 rows and 13 columns. I am using this code to create a computed column MAX(CASE When V_MKTDEC_PROVISIONS.LINE_ORDER = 1 Then V_MKTDEC_PROVISIONS.PROVISION_DETAIL ELSE " " END) I am only testing on 1 record but it doesn't bring back anything.&amp;nbsp; This is a hugh table that I am trying to query. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Apr 2012 16:15:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Query-Error/m-p/56183#M5886</guid>
      <dc:creator>lloraine</dc:creator>
      <dc:date>2012-04-04T16:15:15Z</dc:date>
    </item>
    <item>
      <title>Re: Query Error</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Query-Error/m-p/56184#M5887</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See this SAS Note about the NOTE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="active_link" href="http://support.sas.com/kb/4/308.html"&gt;http://support.sas.com/kb/4/308.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does your query include any grouping/aggregation?&amp;nbsp; You can get this message if you have SELECTed additional variables that are not included in the aggregations that you asked for.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Chris&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Apr 2012 17:19:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Query-Error/m-p/56184#M5887</guid>
      <dc:creator>ChrisHemedinger</dc:creator>
      <dc:date>2012-04-05T17:19:50Z</dc:date>
    </item>
    <item>
      <title>Re: Query Error</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Query-Error/m-p/56185#M5888</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have figured out everything but now I am having a problem with filtering on dates. I want to use the following: Eff_From_Dt=intnx('day',date(),0) This code "intnx('day',date(),0" gives me the current date. When I use the above code, I do not get results.&amp;nbsp; When I take the filtering out, I get results.&amp;nbsp; I tried formatting the from and to date to MMDDYYS10.0 but I got ***** for the from date.&amp;nbsp; It is probably something simple that in my ignorance of Sas, I am missing. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Apr 2012 18:43:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Query-Error/m-p/56185#M5888</guid>
      <dc:creator>lloraine</dc:creator>
      <dc:date>2012-04-05T18:43:41Z</dc:date>
    </item>
    <item>
      <title>Re: Query Error</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Query-Error/m-p/56186#M5889</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Temporary tablespaces are used by Oracle as scratchpads during a query.&amp;nbsp; They can overflow and cause the error you are seeing.&amp;nbsp; Causes include many things, but the most common reason for end users to see the error is that a large sort is taking place.&amp;nbsp; Sorts are usually the result of ORDER BY or GROUP BY clauses.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The error can also happen for other reasons, such as index creation or because too many transactions are competing for temp space, but the most common culprit is a large sort.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Glad you got it worked out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marty&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Apr 2012 19:00:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Query-Error/m-p/56186#M5889</guid>
      <dc:creator>MartyS</dc:creator>
      <dc:date>2012-04-05T19:00:50Z</dc:date>
    </item>
  </channel>
</rss>

