Use-case recommendation

Best Format for Database Seed Rehearsal

SQL is the default for database seed rehearsal because it preserves ordered execution and rollback semantics.

Recommendation

Recommendation

SQL

SQL lets you test the same DDL, seed, and transactional behavior that production-like setup jobs actually rely on.

application/sql

CSV

Use CSV when the system under test only supports loader-based tabular imports.

Dateien: 22

JSON

Use JSON when the workload is closer to API-shaped data than relational replay.

Dateien: 22

Related decisions

Related Decisions

FAQ

FAQ

Was ist die Standardempfehlung fuer dieses Einsatzszenario?

SQL ist hier das empfohlene Standardformat.

Wie sollten Teams diese Empfehlung validieren?

Nutzen Sie Beispieldateien und Manifest-Endpunkte, um Kompatibilitaet und Verhalten vor dem Rollout zu pruefen.