On Sat, 1999-09-11, Martin Ramsch wrote:
If not, what is the best way? Maybe temporary copying into one big table?
Actually, I think the best way is to change your table design!
For example, why not just use a single table, and then
SELECT COUNT(*) FROM tab WHERE uid=###;
I can't because this table is very big (it's size is about 200MB every
evening)
Each new INSERT lasts for second or two when table become big enough (it has
indexes and several "char" fields also) and other processes are locked and
awaiting while INSERT will be done. I need about 400 new INSERTs each
minute, so I decided to split one big table to 24 parts to speed up INSERT
process.
Or this is wrong way?