in reply to Speed of MySQL DBs
Regarding that last item, it would seem easy enough to take whatever method you are using at present to invent distinct table names, and instead have a single set of tables where that extra chunk of information is stored into the rows that are created on a given run. In other words, instead of this:
You could just have this:run1_tbla: (fld1, fld2, fld3, ...) run1_tblb: (fldx, fldy, fldz, ...) run2_tbla: (fld1, fld2, fld3, ...) run2_tblb: ...
Maybe "run_id" could be something like the date/time of the run, or whatever.table_a (run_id, fld1, fld2, fld3, ...) table_b (run_id, fldx, fldy, fldz, ...)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Speed of MySQL DBs
by rsiedl (Friar) on Feb 06, 2006 at 05:41 UTC | |
by graff (Chancellor) on Feb 06, 2006 at 06:00 UTC | |
by eric256 (Parson) on Feb 06, 2006 at 18:17 UTC | |
by graff (Chancellor) on Feb 07, 2006 at 01:20 UTC | |
by clinton (Priest) on Feb 06, 2006 at 09:48 UTC |