2009 Oct 29 9:36 AM
Hi Guriji,
Plz tell me how we can increase internal table size. I have fetch data which has arround 20000000 rows.
thanks.
2009 Oct 29 9:37 AM
hi,
use the INITIAL SIZE addition:
TYPES <t> TYPE|LIKE <tabkind> OF <linetype> [WITH <key>]
[INITIAL SIZE <n>].
allocate ABAP memory to it.
ags.
Hi Guriji,
Plz tell me how we can increase internal table size. I have fetch data which has arround 20000000 rows.
thanks.
2009 Oct 29 9:37 AM
hi,
use the INITIAL SIZE addition:
TYPES <t> TYPE|LIKE <tabkind> OF <linetype> [WITH <key>]
[INITIAL SIZE <n>].
allocate ABAP memory to it.
ags.
2009 Oct 29 9:41 AM
First read SAP documentation at [Processing Large Volumes of Data|http://help.sap.com/saphelp_nw04/Helpdata/EN/bf/cf52e4003011d2952b0000e8353423/frameset.htm] ([extracts|http://help.sap.com/saphelp_nw04/Helpdata/EN/9f/db9ed135c111d1829f0000e829fbfe/frameset.htm] can reach much more space than internal table in theory, limits arise in system parameters and actual size of course)
Regards,
Raymond
2009 Oct 29 9:54 AM
Also check if whatever you are doing there can be done in processing blocks instead of all at once, e.g. by using SELECT ... PACKAGE SIZE ...
Thomas
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |