#1の方も指摘されている通り、 psql を使えば出来ます。 psql で、-f オプションを使うか、該当のDBに接続して \i コマンドを使えば良いでしょう。 http://www.postgresql.jp/document/pg746doc/html/ … SQLが記述されているファイルを insert_data.sql、 DBを testdb としますと 例1)------------------------------------------------------------- $ psql testdb Welcome to psql x.x.x, the PostgreSQL interactive terminal. ・ ・ ・ testdb=> \i insert_data.sql testdb=> \q --------------------------------