‎2009 Feb 13 5:54 AM
hi folks,
i am working on a report. in this im working on performance issues.
i want to check if sort table is used in the report.
i want to know the conditions where sort table IS A MUST to use for performance check purpose.
thanks in advance.
‎2009 Feb 13 6:00 AM
Hi Michael
Sort table is recommended when you have to do READ TABLE BINARY SEARCH. You don't have to sort it in the code then.
Pushpraj
‎2009 Feb 13 6:05 AM
Hi,
Don't use order by because it executes on database server, instead u collect them in a table and sort that table.
Regards,
jaya
‎2009 Feb 13 6:06 AM
Hi Micheal,
You use use sort table while your using control break statements like at new or at end .
Much Regards,
Amuktha.
‎2009 Feb 13 6:27 AM
Sort table is improve performance bcoz it has default sorting criteria. so no sorting again.
at the time of using Control Break statements. and it is use full for Binary Searching bcoz Sorting is Mandatory. And No append command is working on it.
‎2009 Feb 25 6:37 AM