5
COPY: table backup
Backup
output of a table or a query into a file, console or another program
Recovery
insertion of rows from a file or console into an existing table
Server variant Client variant
SQL COPY command  psql \COPY command
the file must be accessible the file must be accessible
to the postgres user to the user who has launched psql
on the server on the client
If you want to save only the contents of one table, you can use the COPY 
command.
The command writes a table (or the result of an arbitrary query) either to
a file or to the console, or sends it as input to another program. You can 
specify parameters such as format (plain text, csv or binary), field 
separators, NULL representation etc.
The alternative variant of the COPY command reads fields from a file or the 
console and inserts them into a table. The table isn't truncated, the new 
rows are simply appended to the existing ones.
The COPY command is significantly faster than similar INSERT commands, 
because the client does not need to access the server repeatedly, and the 
server does not have to parse the commands multiple times.
In psql, there is a client version of the COPY command with a similar syntax. 
Unlike the server version, which is an SQL command, the client version is
a psql command.
The file name in the SQL command corresponds to a file on the database 
server. The user running PostgreSQL (usually postgres) must have access 
to this file. In the client version, the file is accessed on the client, and only 
the content is transmitted to the server.