FIX: Error: "Cannot Nest Aggregate Functions"

Last reviewed: February 20, 1997
Article ID: Q154023
The information in this article applies to:
  • Microsoft Visual FoxPro for Windows, versions 3.0, 3.0b
  • Microsoft FoxPro for Windows, versions 2.6, 2.6a
  • Microsoft FoxPro for MS-DOS, versions 2.6, 2.6a

SYMPTOMS

The following error occurs when running a form containing Structured Query Language (SQL) code:

   "Error Loading File - Loading Form or the Data Environment - Record
   number 44.  Cannot Nest Aggregate Functions".

The record number that the error is referring to is always the FORM itself. In other words, the CLASS field contains 'FORM' and OBJECTNAME = 'FORM1'.

CAUSE

The cause of this problem is related to the way FoxPro internally parses the SQL code. The code is parsed and assigned an internal number. The number assigned is entirely dependent on the code itself and the order it is being generated in. In this case, the number generated is similar to the token for the SQL aggregate count; thus, FoxPro thinks that it has been nested.

WORKAROUND

The workaround is to change the order of the code. This can be accomplished in several different ways, depending on the code itself. For example, if User Defined Functions (UDFs)are being used by the code, they could be moved to another procedure. If IIF statements are being used, those could be moved to a .PRG file and then called as UDFs. Both of these will change the order in which the code is being parsed and will result in a different generated number. Since there are only a few numbers out of millions that may conflict, the chances of ever seeing the error again are very slim.

STATUS

Microsoft has confirmed this to be a problem in the Microsoft products listed at the beginning of this article. This problem has been fixed in Visual FoxPro 5.0 for Windows.


KBCategory: kbprg kbbuglist kbfixlist
KBSubcategory: FxprgSql VFoxWin FoxWin FoxDOS buglist2.60 buglist2.60a
buglist3.00 buglist3.00b fixlist5.00
Additional reference words: 2.60 2.60a 3.00 3.00b


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: February 20, 1997
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.