Began to deal with database backup in Postgre. Copies will be made for 1C enterprises. I read two backup utilities:
pg_dump As I understand it is used to copy a single database.
pg_dumpall For a copy of the entire database cluster. If you understand correctly, then with pg_dumpall we will create a backup of all existing databases. And it's probably better to use it when we transfer everything to another server.
The question is whether it is possible to restore only the databases of interest from the backup made with pg_dumpall . For example: there are 5 bases, I want to restore 1 or 2. Is it even possible?
Or is it better to use pg_dump for each database?