/* Combine the downloaded dataset files */ cat xa? > qscored_dump_2022.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\qscored_dump_2022.tar