2 question about programming
Using PGAdmin4 create the database sqlda. Then, use the psql command line tool available in the Postgres 12 program folder to restore the database. Here is the sample text that I used. c:\Program Files\PostgreSQL\12\bin>psql -U postgres -d sqlda -f "C:\Users\davep\OneDrive\Desktop\data2.dump" In the cmd window, navigate to the foler where psql.exe resides. You can see above where it resides on my Windows computer after a default installation. Execute the psql command tool and input these responses to the questions posed as follows: c:\Program Files\PostgreSQL\12\bin>psql Server [localhost]: localhost Database [postgres]: postgres Port [5432]: 5432 Username [postgres]:postgres Password for user postgres: <your system password> You can list your databases in the command line with \l You can connect to the sqlda database with \c Then you can list the database tables with \dt You can also check in PFAdmin4 for the new database (you may need to refresh).