我正在搞清楚如何在不使用中间文件的情况下导入和导出mysql数据库。
答案 0 :(得分:0)
ascross this:
mysqldump -hremote_server.com -uuser -psome_pawd database_name | mysql -hlocalhost -uuser - psome_pawd database_name
这里,remote database dump is an input to the localhost
也可以是远程服务器。
因此,服务器到服务器的导入和导出发生在这里,而不使用中间文件。
注意: 如果你想备份,你需要有一个中介文件