Is there a way to dump all database contents using pg_dump for a custom user.
Something like:
pg_dump --user=user_name --password=password database
where user_name is any user granted to access this database with all the rights.
The problem is pg_dump has an option --password, but it's interactive and i need to launch the command from a php script.
thx.
Note that mysqldump has this kind of options.