Alguém pode me dizer como fazer isso?
(Eu sei que talvez seja uma pergunta idiota, mas estou tentando aprender a usar a linha de comando do postgresql)
~$ psql mybase
psql (9.1.3)
Type "help" for help.
e depois
mybase=# \dt
List of relations
Schema | Name | Type | Owner
--------+---------------------+-------+----------
public | xxxxxx | table | postgres
public | xxxxxxx | table | postgres
public | xxxxxxxxxxx | table | postgres
public | xxxxxxxx | table | postgres
public | xxxxxxxxx | table | postgres
public | xxxxxxxxx | table | postgres
public | xxxxxxxxxxxxxxxx | table | postgres
public | xxxxxxxxxxxx | table | postgres
public | xxxxxxxxxxxxxxxx | table | postgres
public | xxxxxxxxxx | table | postgres
public | xxxxxxxxx | table | postgres
public | xxxxxxxxxxxxxxxx | table | postgres
public | xxxxxxxx | table | postgres
só quero uma tabela para fazer uma restauração =D obrigado
Se você deseja criar arquivos de texto contendo os dados, use o comando COPY (ou o
psql
comando\copy
que cria os arquivos de saída no cliente, em vez de no servidor como oCOPY
comando faz).Se você deseja criar instruções SQL, use pg_dump