1,350 pts.
 Max size of a subfile
wat is the max of size of sub file? what should i do if i need more than 10k.

Software/Hardware used:
ASKED: October 4, 2011  7:53 AM
UPDATED: March 31, 2012  12:45 AM

Answer Wiki:
The max size is 9999 records. You should never have to worry about that if you code your program to just fill a page at a time.
Last Wiki Answer Submitted:  October 4, 2011  12:30 pm  by  CharlieBrowne   33,695 pts.
All Answer Wiki Contributors:  CharlieBrowne   33,695 pts.
To see all answers submitted to the Answer Wiki: View Answer History.


Discuss This Question:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _


 

what should i do if i need more than 10k.

Since a subfile should never have more than a couple hundred records written to it, you should never need more than 10k.

You should never force a user to have to scroll through ten thousand records. And if you don’t want them scrolling that far, there is no reason to put all of those records in there at one time.

Use a page-at-a-time subfile instead.

You cannot have more than 9999 records in any subfile.

Tom

 110,115 pts.