/* Combine the downloaded dataset files */ cat qscored_dump_25Jan2021?? > qscored_dump_25Jan2021.tar /* After installing Postgres (ver 9.x), run following commands */ psql -U postgres CREATE DATABASE qscoreddb WITH TEMPLATE=template0 ENCODING='UTF-8' LC_COLLATE='american_usa' LC_CTYPE='american_usa'; CREATE USER dbwala WITH PASSWORD 'password'; GRANT ALL PRIVILEGES ON DATABASE qscoreddb TO dbwala; pg_restore -d qscoreddb -U postgres \path\to\qscoreddb_dump_Jan252021.tar