Skip to content Skip to sidebar Skip to footer

How To Import An Sql File Of The Northwind Database To Postgresql?

I am using the most recent version of PostgreSQL, and Pgadmin 4. And I am attempting to import this database from git: https://github.com/pthom/northwind_psql I attempted to load t

Solution 1:

This file is not intended for a pg_restore. You should to just execute it on psql.

pg_restore is a utility for restoring a PostgreSQL database from an archive created by pg_dump in one of the non-plain-text formats.

Take a look to create_db on GitHub shell script to understand how to import it.

Post a Comment for "How To Import An Sql File Of The Northwind Database To Postgresql?"