-
-
Save peppyheppy/29004aface9ff0083687 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Connects to a MySQL database to dump data in batches. | |
# Great for dumping large datasets. | |
LIMIT=1000000 | |
OFFSET=0 | |
MAX_ROWS=1000000000 | |
# This loops until it has read MAX_ROWS | |
while [ $OFFSET -lt $MAX_ROWS ] | |
do | |
echo "Fetching rows starting $OFFSET" | |
echo "SELECT COL_NAME FROM TABLE_NAME LIMIT $LIMIT OFFSET $OFFSET" | mysql DATABASE_NAME --skip-column-names -B -u MYSQLUSERNAME -pMYSQL_PASSWD >> output.csv | |
OFFSET=$((OFFSET+LIMIT)) | |
done | |
# All you have to do is tweak the LIMIT and MAX variable to your liking. | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment