i'm looking for a software that i can use to fill a mysql db (structure created by joomla, drupal or any CMS or script) with samples data for tot MB, so i can decide to put 400 MB of data in my tables to test my db and mysql engine. Is there something like this? Thanks very much ;) Nik
feedback
|
|
I know drupal 6 specifically the devel module allows you to generate random dummy text: http://drupal.org/project/devel | |||
|
feedback
|
|
if you put your data into a comma separated value file, you can use the LOAD DATA command. Here is a page discussing how to import CSV data into mysql
here is a shortcut to run the LOAD DATA command. To import from joomla, drupal, etc, you might need to export and convert into csv. | |||
|
feedback
|
|
you can create one sample db , take your dump with:
then use anywhere on any database using:
| |||
|
feedback
|