7
10

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

RedShiftでよくつかったpsqlコマンド

Posted at

psqlから接続している場合、postgresqlとほぼ同じコマンドを使用することが可能です。

  • ユーザーの一覧
    \du

  • 権限の一覧
    \dp

  • テーブルの一覧
    \dt

  • カラムの一覧(sortkey、distkey、encodingの表示は無し)
    \d テーブル名

 
上記以外にも、使えるコマンド(オプション)はありますので是非お試しあれ  


ちなみに、コマンドではないですが、以下のSQLで詳細な情報を見る事が出来ます。

  • ↓各テーブルのカラム構造を取得できます
    SELECT * FROM pg_table_def

  • ↓sortkeyやencodeの効果も確認できます
    SELECT * FROM SVV_TABLE_INFO

7
10
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
7
10

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?