markdown Mysql到Psql
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown Mysql到Psql相关的知识,希望对你有一定的参考价值。
### Backup from Mysql
`mysqldump --compatible=postgresql --default-character-set=utf8 -u root -p tasks > export.sql`
### Msql to Psql
`wget https://raw.github.com/lanyrd/mysql-postgresql-converter/master/db_converter.py`
`chmod +rx db_converter.py`
`python db_converter.py export.mysql import.psql`
### Now dump into postgres
`sudo -u postgres psql tasks < import.psql`
以上是关于markdown Mysql到Psql的主要内容,如果未能解决你的问题,请参考以下文章
markdown 导出PSQL路径
markdown PSQL
markdown PSQL片段
markdown psql如何使用SSH隧道远程服务器中的数据库?
如何在 psql 中切换数据库?
在 Apache Cassandra 中实现 Mysql 或 Psql 关系表(外键约束)功能