Viewing articles tagged 'export'

 Mysql export databases script

We can use this command to export the databases as single files: mysql -uroot -p -e 'show...

 Script to export tables from an sqlite database to files

script to export the tables:#!/usr/bin/env bash# obtains all data tables from databaseTS=`sqlite3...