All Topics
All Topics
Technology
Technology
Design
Design
Programming
Programming
Science
Science
News
News
Gaming
Gaming
Entertainment
Entertainment
Business
Business
Finance
Finance
Sports
Sports
Health
Health
Food
Food
Travel
Travel
Art
Art
Music
Music
Books
Books
Education
Education
Politics
Politics
Personal
Personal
No algorithm. No AI slop. No ads. Just RSS. Pro-human. Indie writers. Real journalism. Open web. Chronological. Hand toasted.

DDL to Data: Generate Realistic Test Data from SQL Schemas

By

ddltodata

4mo ago· 1 min readenNews

Summary

DDL to Data is a tool that generates realistic test data from SQL schemas, addressing the common problem of needing populated databases for testing without using production data. The creator built it to avoid security reviews, PII scrubbing, and DevOps tickets associated with production data, as well as the fragility of hand-written seed scripts. The tool parses CREATE TABLE statements, preserves foreign key relationships, and generates realistic test data automatically.

Key quotes

· 5 pulled
I built DDL to Data after repeatedly pushing back on 'just use production data and mask it' requests.
Teams needed populated databases for testing, but pulling prod meant security reviews, PII scrubbing, and DevOps tickets.
Hand-written seed scripts were the alternative slow, fragile, and out of sync the moment schemas changed.
Paste your CREATE TABLE statements, get realistic test data back.
It parses your schema, preserves foreign key relationships, and generates realistic test data automatically.
Snippet from the RSS feed
I built DDL to Data after repeatedly pushing back on "just use production data and mask it" requests. Teams needed populated databases for testing, but pulling prod meant security reviews, PII scrubbing, and DevOps tickets. Hand-written seed scripts were

You might also wanna read