私は誤ってテーブルをpg_class
から削除しました。スキーマ内の別のサーバに同じテーブルが存在します。どのように復元するのですか?pg_classから誤ってテーブルを削除した場合、それをバックアップから復元する方法はありますか?
ERROR: type "food_ingredients" already exists`
HINT: A relation has an associated type of the same name, so you must use a name that doesn't conflict with any existing type.`
ERROR: relation "food_ingredients" does not exist`
ERROR: syntax error at or near "19411"`
LINE 1: 19411 10405 2074 45.3333333333 0.17550085492131515 NULL NULL...`
ERROR: relation "food_ingredients" does not exist`
food_ingredients
は私がするpg_classから削除された表である -
私はこれは私が得ているものです。この
psql -U {user-name} -d {desintation_db} -f {dumpfilename.sql}`
を試してみました。
お返事ありがとうございます!私はデータベース全体を削除し、バックアップを復元しました。他に何も働いていなかった。 – asdf