2009-11-09から1日間の記事一覧

postgresのバージョンを調べる

ターミナルからならば、接続した際にすぐわかります [hoge@hoge-dev]$ psql DB Welcome to psql 8.3.8, the PostgreSQL interactive terminal. Type: \copyright for distribution terms \h for help with SQL commands \? for help with psql commands \g o…

テーブルのカラムにコメントをつける

COMMENT ON COLUMN テーブル.カラム IS 'コメント';

confに書いたディレクトリが無くてapacheが停止

ブラウザ確認できなくなったので以下対応文法エラーは無し [root@hoge-dev ~]# httpd -t Syntax OK再起動しようとしたらapacheがそもそも動いていない [root@hoge-dev ~]# service httpd graceful httpd not running, trying to startstartしようとしたら失…

DB一覧、構成の確認

DB一覧 [root@hoge-dev ~]# mysqlshow +--------------------+ | Databases | +--------------------+ | information_schema | | mysql | | test | +--------------------+DB構成 [root@hoge-dev ~]# mysqlshow mysql Database: mysql +--------------------…