9 releases
0.2.7 | Sep 2, 2024 |
---|---|
0.2.6 | May 26, 2024 |
0.2.5 | Jan 29, 2024 |
0.1.0 | Jan 18, 2024 |
#1132 in Command line utilities
15KB
313 lines
copgy
copgy is a CLI utility tool for copying data between and executing SQL on PostgreSQL databases.
Warning
Employ the readonly user approach when engaging with production databases to prevent inadvertent data loss.
Features
- copy data using a single query
- copy data using a script json file
- copy data & execute SQL using a script json file
Installation
cargo install copgy
Usage
Single
copgy --source-db-url postgresql://host:5432/postgres --dest-db-url postgresql://host:5432/postgres single --source-sql 'select * from employees' --dest-table employees_tmp
Script
copgy --source-db-url postgresql://host:5432/postgres --dest-db-url postgresql://host:5432/postgres script --file-path ~/Desktop/copgy.json
sample copgy.json
[
{
// execute on source db
"execute": {
"source_sql": "update employees set first_name = 'copgy' where emp_no = 0"
}
},
{
// execute on destination db
"execute": {
"dest_sql": "truncate employees_tmp"
}
},
{
// copy from source db to destination db
"copy": {
"source_sql": "select * from employees",
"dest_table": "employees_tmp"
}
}
]
Info
Sample PostgreSQL connection string
postgresql://username:password@host:port/dbname
License
Dependencies
~14–26MB
~406K SLoC