Generador Esquema DDL

Infiere un esquema de BD estricto (Postgres, Snowflake) a partir de CSV.

Tus archivos nunca salen de tu dispositivo. Procesados localmente. 100% privado.

Unlocking Tool Engine...

Cómo usar Generador Esquema DDL

Completa tu tarea perfectamente en solo tres sencillos pasos.

1

Subir CSV

Suelta tu archivo CSV.

2

Configurar

Elige el dialecto SQL, nombre de tabla y ajusta los tipos detectados.

3

Descargar SQL

Descarga la declaración CREATE TABLE DDL.

Preguntas frecuentes

Todo lo que necesitas saber sobre el Generador Esquema DDL.

¿Qué dialectos SQL se admiten?

PostgreSQL, MySQL, SQLite, SQL Server y BigQuery.

¿Se detectan automáticamente los tipos de datos?

Sí — INTEGER, FLOAT, DATE, BOOLEAN y VARCHAR con longitudes inferidas.

¿Se sube mi archivo?

No. Todo se ejecuta localmente.

¿Límite de tamaño de archivo?

Procesa archivos hasta el límite de memoria del navegador.

¿Puedo añadir índices al DDL?

Sí — añade definiciones de PRIMARY KEY e INDEX antes de descargar.

Can I customize the table name?

Yes. There is a table name input field above the generated DDL. By default it uses raw_data_import. Change it to your desired table name before copying — the table name is embedded throughout the CREATE TABLE statement.

How accurate is the type inference on messy real-world data?

Type inference is accurate for clean, consistently-typed columns. Edge cases to watch: mixed-type columns (e.g., a column with mostly numbers but some text like 'N/A') will fall through to VARCHAR — use CSV Repair or the Cleaner tool to standardize nulls first. Dates in non-ISO formats (e.g., 15-Jan-2024) may not be detected as TIMESTAMP — use the Date Fixer tool to standardize them to YYYY-MM-DD first.