1

I have a VPS (ubuntu base).

I can not access to console of postgresql. How should I backup from PostgreSQL?

Thanks.

1 Answer 1

0

The COPY command dumps out the data of one table to the console. You can then save this data locally.

Example:

COPY country TO STDOUT

Reference

COPY -- copy data between a file and a table

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .