All Projects → kedarvj → mysql-random-data-generator

kedarvj / mysql-random-data-generator

Licence: MIT license
This is the easiest MySQL random test data generator tool. Load the procedure and execute to auto detect column types and load data.

Projects that are alternatives of or similar to mysql-random-data-generator

DummyJSON
DummyJSON provides different types of REST Endpoints filled with JSON data which you can use in developing the frontend with your favorite framework and library without worrying about writing a backend.
Stars: ✭ 213 (+97.22%)
Mutual labels:  dummy-data, dummy-data-generator
Faker
Go (Golang) Fake Data Generator for Struct
Stars: ✭ 1,698 (+1472.22%)
Mutual labels:  dummy-data, dummy-data-generator
Randomkit
Random data generation in Swift
Stars: ✭ 1,458 (+1250%)
Mutual labels:  random-generation
perlin-toolkit
Animated perlin noise textures
Stars: ✭ 15 (-86.11%)
Mutual labels:  random-generation
SQLServerTools
This repo is the home of various SQL-Server-Tools
Stars: ✭ 28 (-74.07%)
Mutual labels:  procedure
Fluky
🎲 Loading based on random icons
Stars: ✭ 136 (+25.93%)
Mutual labels:  random-generation
jRand
A Java library to generate random data for all sorts of things. Java random data faker
Stars: ✭ 27 (-75%)
Mutual labels:  random-generation
Prando
Deterministic pseudo-random number generator for JavaScript and TypeScript
Stars: ✭ 66 (-38.89%)
Mutual labels:  random-generation
Squrl
SQURL is a cross-platform desktop application designed for developers who are looking to generate meaningful test data and monitor database KPIs
Stars: ✭ 95 (-12.04%)
Mutual labels:  dummy-data-generator
RandomGenKt
Kotlin port of RandomGen
Stars: ✭ 28 (-74.07%)
Mutual labels:  random-generation
MySQL-cheatsheet
Cheatsheet for MySQL
Stars: ✭ 43 (-60.19%)
Mutual labels:  procedure
Stat
Statistics package for Go [DEPRECATED]
Stars: ✭ 198 (+83.33%)
Mutual labels:  random-generation
Design Of Experiment Python
Design-of-experiment (DOE) generator for science, engineering, and statistics
Stars: ✭ 143 (+32.41%)
Mutual labels:  random-generation
witnet-solidity-bridge
Witnet Bridge for EVM-compatible blockchains
Stars: ✭ 46 (-57.41%)
Mutual labels:  random-generation
Open Crypto
🔑 Hashing (BCrypt, SHA2, HMAC), encryption (AES), public-key (RSA), and random data generation.
Stars: ✭ 115 (+6.48%)
Mutual labels:  random-generation
random-logger
Docker image for a random log generator.
Stars: ✭ 104 (-3.7%)
Mutual labels:  random-generation
Cloudy
Random Cloudy Skies for iOS.
Stars: ✭ 103 (-4.63%)
Mutual labels:  random-generation
Random-Weapon-Generator-For-Unity
a Borderlands 2 inspired, part-based random weapon generator for Unity Engine
Stars: ✭ 29 (-73.15%)
Mutual labels:  random-generation
fastDummies
The goal of fastDummies is to quickly create dummy variables (columns) and dummy rows.
Stars: ✭ 33 (-69.44%)
Mutual labels:  dummy-data
Pydbgen
Random dataframe and database table generator
Stars: ✭ 191 (+76.85%)
Mutual labels:  random-generation

mysql-random-data-generator

This is the easiest MySQL Random Data Generator tool. Load the procedure and execute to auto detect column types and load data in it.

Usage:

  1. Download random data generator (populate.sql and populate_fk.sql) from website or git.
  1. Load it to mysql
mysql -uUSER -p DBNAME < populate.sql
mysql -uUSER -p DBNAME < populate_fk.sql
  1. Use:
mysql>use DBNAME

mysql>call populate('sakila','film',100,'N');
mysql>call populate_fk('sakila','child_table',100,'N');
  • Parameters are: database-name, table-name, number-of-records, debug-mode
  • Setting debug-mode as Y will print all the insert statements that are being executed.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].