Vincent, thanks for replying.
I am currently using the mysqlimport utility with --force to load the raw data into the database.
My biggest problem is, currently I have several php pages that runs every hour to generate summarized report on these rawdata.
What I mean is, these php pages do the following:
(1) open up database connection
(2) query the raw data which we have just imported, using GROUP BY, TABLE JOINING operations.
(3) does some calculation with the fetched data and insert the summarized data into another table in the database.
The problem is, this obviously takes up database connection(the summarized data are
what users are seeing when they come to this site).
Also if for any reason Apache Server
goes down, not only can't the user see the summarized data, but neither can we load any raw data or summarized data into the database. This is what I am trying to avoid
(I want the data loading to bypass Apache, so if i take Apache down, the data loading will continue to operate).
Do you have any language in mind which can do this (as has the capacity to query the database and does not use a web server)?
-Will