You are viewing a plain text version of this content. The canonical link for it is here.
Posted to torque-user@db.apache.org by Todd Carmichael <to...@concur.com> on 2003/10/22 06:45:05 UTC

Problems with createOracleLimitOffsetQuery

Has anyone had problems with this method in torque 3.1 using Oracle 9.2?
This method is generating incorrect sql (does not get past sql compiler) for
us.  

Here is the query that this method generated and is causing an ambigous
column error:

SELECT B.* FROM ( SELECT A.*, rownum AS TORQUE$ROWNUM FROM 
( SELECT CT_LEDGER.LEDGER_KEY, CT_LEDGER.AC_HIER_KEY,
CT_LEDGER.REP_HIER_KEY, CT_LEDGER.LEDGER_CODE, CT_LEDGER_LANG.LEDGER_KEY,
CT_LEDGER_LANG.LANG_CODE, CT_LEDGER_LANG.IS_LOCALIZED, CT_LEDGER_LANG.NAME 
  		 FROM CT_LEDGER, CT_LEDGER_LANG WHERE
CT_LEDGER_LANG.LANG_CODE= 'en'  AND
CT_LEDGER.LEDGER_KEY=CT_LEDGER_LANG.LEDGER_KEY ) A
		   ) B WHERE  B.TORQUE$ROWNUM <= 500;

Any help would be appreciated.

Thanks
ToddC