postgres database backup code example
Example 1: postgresql restore from dump
psql -U postgres -h localhost -p 5432 -f data_dump.sql
Example 2: how to take backup in dbeaver with postgresql
Check
Native client configuration
psql -U postgres -h localhost -p 5432 -f data_dump.sql
Check
Native client configuration