डेटाबेस की सामग्री को डंप करने के बारे में, फिर 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');