コマンドラインでPostgreSQLにログインする方法

コマンドラインでPostgreSQLにログインする方法を以下にメモとして記載する。

■Windowsの場合
(1)コマンド・プロンプトを起動して以下を入力し、[Enter]キーを押す。
cd C:\Program Files\PostgreSQL\8.3\bin
または
[スタート]→[すべてのプログラム]→[PostgreSQL 8.3]→[コマンド・プロンプト]でもOK

(2)C:\Program Files\PostgreSQL\8.3\bin>の後ろに続けて以下のコマンドを実行。
psql -U postgres

※備考
「psql -U postgres データベース名」として、使用するデータベースを選択してログインすると便利。
<例>
C:\Program Files\PostgreSQL\8.3\bin>psql -U postgres catdb
Welcome to psql 8.3.5, the PostgreSQL interactive terminal.

Type: \copyright for distribution terms
\h for help with SQL commands
\? for help with psql commands
\g or terminate with semicolon to execute query
\q to quit

catdb=#

■Linuxの場合
(1)Linuxにログイン後、以下のコマンドを実行。
psql -U postgres

※備考
「psql -U postgres データベース名」として、使用するデータベースを選択してログインすると便利。
<例>
[root@nekoneko ~]# psql -U postgres catdb
Welcome to psql 8.1.11, the PostgreSQL interactive terminal.

Type: \copyright for distribution terms
\h for help with SQL commands
\? for help with psql commands
\g or terminate with semicolon to execute query
\q to quit

catdb=#

psqlで接続するあたりから、Windows、LinuxどちらでPostgreSQLにログインした場合でも基本操作は同じ・・・だと思う。

前へ

PostgreSQLでデータベース一覧を表示する方法

次へ

秀丸エディタ、サクラエディタで箱型選択する方法