I will introduce you several way to output sql result into a file with using psql.
Continue reading PostgreSQL: How to Export SQL Result to FileTag Archives: [:ja]エクスポート[:en]Export[:]
PostgreSQL: Copy Database without Saving Dump File
MySQL の場合は MySQL: ダンプを保存せずにデータベースをコピー をご覧ください。
PostgreSQL のデータを移す際によくやるのは、 pg_dump
でダンプデータを取得・保存して、 psql
で流し込む方法です。
いちいちダンプファイルに保存するのも面倒なので、つなげてひとつのコマンドにしてみました。 ダンプファイルの保存は行いません。
Continue reading PostgreSQL: Copy Database without Saving Dump File