データベースの内容をダンプしてから、grep
を使用するのはどうですか。 ?
$ pg_dump --data-only --inserts -U postgres your-db-name > a.tmp
$ grep United a.tmp
INSERT INTO countries VALUES ('US', 'United States');
INSERT INTO countries VALUES ('GB', 'United Kingdom');
同じユーティリティpg_dumpは、出力に列名を含めることができます。 --inserts
を変更するだけです --column-inserts
へ 。そうすれば、特定の列名を検索することもできます。ただし、列名を探している場合は、データではなくスキーマをダンプする可能性があります。
$ pg_dump --data-only --column-inserts -U postgres your-db-name > a.tmp
$ grep country_code a.tmp
INSERT INTO countries (iso_country_code, iso_country_name) VALUES ('US', 'United States');
INSERT INTO countries (iso_country_code, iso_country_name) VALUES ('GB', 'United Kingdom');