Any free open source tool to populate a database with some dummy values

I have about 30 tables used in my web application. I need to populate these tables with some dummy values ​​at design time. Later, as soon as the application is ready, we will receive real data. Are there any tools to populate database tables in MySQL using dummy values?

+3
source share
3 answers

You can try the following:

http://www.generatedata.com/

I wanted to look at this for a while, but I did not reach.

+4
source

SQLyog, . .

0

With Jailer, you can export data to an SQL script that can cross foreign key constraints to include all the data needed to maintain referential integrity.

Here is a screenshot from the Jailer website demonstrating data export:

Export jailer http://jailer.sourceforge.net/qt5.gif

0
source

Source: https://habr.com/ru/post/1753145/


All Articles