sqlread is a mysql dump parser that allows you to query MySQL dumps directly without loading them into MySQL, and export specific tables from said dumps.
Currently, very picky and only likes mysqldump
generated output dumps. Mileage may vary on dumps created with other tools such as Navicat. Compatibility is a work in progress.
While the code is quite usable and useful, I still have a ways to go.
- General Expression Support
- Basic WHERE support
- Basic ORDER BY support
- Optimization of heavily
\
'd string parsing
go install github.com/donatj/sqlread/cmd/sqlread@latest
Available on the Releases page currently for Linux and macOS.
$ sqlread buildings.sql
2017/12/22 12:23:52 starting initial pass
2017/12/22 12:23:52 loaded from cache
2017/12/22 12:23:52 finished initial pass
> SHOW TABLES;
buildings
2017/12/22 12:24:01 restarting lexer
> SHOW COLUMNS FROM buildings;
building_id,int
account_id,int
title,varchar
descr,varchar
city,varchar
state_id,smallint
zip_code,varchar
deleted,tinyint
2017/12/22 12:24:08 restarting lexer
> SELECT building_id, title FROM buildings;
2,Home Building
190,Test Building (demo)
192,Donat Building
194,Other Building
201,Sample Building (demo)
205,Johnson Building
2017/12/22 12:24:44 restarting lexer
> SELECT `building_id`, `title` FROM `buildings` INTO OUTFILE "dump.csv";
2017/12/22 12:27:43 written to `dump.csv`
2017/12/22 12:27:43 restarting lexer