I have a design question on how to design parsing a large excel file say 1000 x 100 Rows, and about 10 tabs.
Each Tab having a set of records with primary key as the first col. but these could be repeted in different tabs and each does not have the same set of primary keys.
- Read a single primary key and form a java object with all the attributes spread across multiple tabs. 
- Read tab by tab, and process the record 
In terms of how Memory is handled in HSSF Java API.
Thanks in Advance