LoginSignup
1
0

More than 5 years have passed since last update.

Windows7環境にPostgreSQLをインストールしてみた

Last updated at Posted at 2019-02-24

インストール

以下サイトを参照してインストール。
【初心者向け】PostgreSQLのダウンロード及びインストール方法

ログイン

コマンドプロンプトを起動し、以下コマンドを入力。

cmd
C:\Users\xxx>psql -l -U postgres

ユーザ postgres のパスワード:
                                             データベース一覧
   名前    |  所有者  | エンコーディング |      照合順序      | Ctype(変換演算子)  |     アクセス権限
-----------+----------+------------------+--------------------+--------------------+-----------------------
 postgres  | postgres | UTF8             | Japanese_Japan.932 | Japanese_Japan.932 |
 template0 | postgres | UTF8             | Japanese_Japan.932 | Japanese_Japan.932 | =c/postgres          +
           |          |                  |                    |                    | postgres=CTc/postgres
 template1 | postgres | UTF8             | Japanese_Japan.932 | Japanese_Japan.932 | =c/postgres          +
           |          |                  |                    |                    | postgres=CTc/postgres
(3 行)
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0