Tag Archives: PostgreSQL

PostgreSQL: How to Export SQL Result to File


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 File

PostgreSQL: Print Values on the SCREEN


Here I wrote the way to print values in PostgreSQL PL/pgSQL onto your screen. (In Oracle PL/SQL, we can use DBMS_OUTPUT to print values.)

Continue reading PostgreSQL: Print Values on the SCREEN

PostgreSQL: Execute PL/pgSQL Code on the Spot


In Oracle Database, we can use PL/SQL and create stored procedure and functions. As for PostgreSQL, we can use and create function.

Here, we write the way to execute PL/pgSQL on the spot, without creating function.

Continue reading PostgreSQL: Execute PL/pgSQL Code on the Spot

PostgreSQL: Copy Database without Saving Dump File


MySQL の場合は MySQL: ダンプを保存せずにデータベースをコピー をご覧ください。

PostgreSQL のデータを移す際によくやるのは、 pg_dump でダンプデータを取得・保存して、 psql で流し込む方法です。

いちいちダンプファイルに保存するのも面倒なので、つなげてひとつのコマンドにしてみました。 ダンプファイルの保存は行いません。

Continue reading PostgreSQL: Copy Database without Saving Dump File

Windows: Set up PostgreSQL ODBC Data Source


Here is the way to set up PostgreSQL ODBC Data Source in Windows.

Continue reading Windows: Set up PostgreSQL ODBC Data Source