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
Spreadsheet::ParseExcel is known to consume large amounts of memory for megabyte sized Excel files. See also Reducing the memory usage of Spreadsheet::ParseExcel.

But if i parse them individually then there is no problem
If your program can handle the files individually but not together then I'd guess that you are creating a new Spreadsheet::ParseExcel object for each file which, given the standard memory usage, is inefficient. If this is the case then try reuse the same object reference for each new file.
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.
Apart from Spreadsheet::ParseExcel the other main way would be to use Win32::OLE on Windows (or possibly on Linux).
Or can somebody suggest a way to convert a excel file into CSV(comma seperated values) format.

The OS spreadsheet application Gnumeric contains a command line utility that allows you to convert spreadsheets from one format to another:

$ ssconvert simple.xls simple.csv

--
John.


In reply to Re: Problem parsing the excel sheet by jmcnamara
in thread Problem parsing the excel sheet by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.