Axaptapedia is now maintained by AgileCadence For more information please click here.
Talk:Temporary tables
From Axaptapedia
		
		
		
Thanks, the article's author. ;^)) But if anybody can introduce the content regarding the size of temporary table?
maybe you can send a copy of your experience to my mailbox, yunmike@msn.com
Thanks in advanced!
join and group by temporary table[edit]
not working with temporary table:
   while select tmpTaxWorkTrans group by taxCode
       join taxTable group by taxCode where
           taxTable.TaxCode == tmpTaxWorkTrans.TaxCode
   {
       info(StrFmt("%1",taxTable.TaxCode));
   }
working with regular table :
   while select taxTrans group by taxCode
       join taxTable group by taxCode where
           taxTable.TaxCode == taxTrans.TaxCode
   {
       info(StrFmt("%1",taxTable.TaxCode));
   }
No tmptable[edit]
Hi there I've just downloaded the 3 xpos from this page, but there's no table in any of them Thus, none of the projects is working fine.
What did I do wrong ?