Hi monks,
I am parsing a couple of excel sheets which are arount 6MB capacity. The problem is that if i parse all these files (say 10 such files) then after extracting data from all the files the program does not exit even if it at the end of the program, it just hangs in there. When i see what exactly is happening using the unix top command then i see that this process is using almost 85 to 90% memory and is varying even after the program is ended (cpu usage = 1-2%). Can any body what exactly is happening and a solution to it. But if i parse them individually then there is no problem it uses limited memory and then the program exits early.
I have one more query is there a way to split a single excel file into multiple ones using some perl module or some thing. Because i need to parse a file which is filled row wise and about 44 columns are filled. Hence i need to break this into two and then parse individually. Or can somebody suggest a way to convert a excel file into CSV(comma seperated values) format.