postgresql export database to sql file code example
Example 1: postgresql export database
// Command Prompt // it may be needed to update the PATH on cmd
pg_dump -U username dbname > filename.pgsql
Example 2: how to take database dump in postgresql
pg_dump dbname > outfile