pgsql export database 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: postgres make sql dump
pg_dump -U username dbname > dbexport.pgsql