How to convert SQL INSERT to Apache Arrow IPC stream
Before you start
Paste one or more INSERT INTO … VALUES statements that use the same columns and portable literal values.
Accepted: .sql · application/sql, text/plain- Paste valid SQL INSERT content, choose files, or drag them onto the drop zone.
- Confirm the detected format. Mixed-format batches are flagged before conversion.
- Select “Convert on this device.” Produces a downloadable Apache Arrow IPC stream file with the correct extension and MIME type.
How this converter behaves
SQLite, Parquet, Arrow, Feather, and table documents are decoded into typed rows in browser memory, then re-encoded without a database server.
What happens to your data?
The conversion engine runs in this browser tab. OmniCastConverter has no upload API and never sends your content, file name, or converted result to a server.
Fidelity and limitations
This route is classified as structural. The converter preserves meaning and structure supported by both formats.
- Tabular values are preserved, while indexes, constraints, triggers, views, relationships, formulas, custom extensions, and database-specific types are not represented by the canonical dataset.
Try a valid example
The “Use example” action in the workbench loads this exact input. Produces a downloadable Apache Arrow IPC stream file with the correct extension and MIME type.
INSERT INTO "people" ("name", "score") VALUES ('Ada', 42), ('Lin', 37);