Data generators for SQL server? [closed]
I have used the data generator in the past. May be worth a look. 3rd party edit If you do not register you can only generate 100 rows. Below you can find a sample how the interface looks today (october 2016)
I have used the data generator in the past. May be worth a look. 3rd party edit If you do not register you can only generate 100 rows. Below you can find a sample how the interface looks today (october 2016)
Try jFairy. This is new project in early stage. Fairy fairy = Fairy.create(); Person person = fairy.person(); System.out.println(person.fullName()); // Chloe Barker System.out.println(person.email()); // barker@yahoo.com System.out.println(person.telephoneNumber()); // 690-950-802 Company company = fairy.company(); System.out.println(company.name()); // Robuten Associates System.out.println(company.url()); // http://www.robuteniaassociates.com Person salesman = fairy.person(withCompany(company)); System.out.println(salesman.fullName()); // Juan Camacho System.out.println(salesman.companyEmail()); // juan.camacho@robuteniaassociates.com PS. I’m a contributor.
Take a look at databene benerator, a test data generator that looks close to your requirements. it can generate data for an existing table definition (or even anonymize production data) it can generate larges data set (unlimited size) it supports various input (CSV, Flat Files, DBUnit) and output format (CSV, Flat Files, DBUnit, XML, Excel, … Read more