Howtodojo logo
  • Home 
  • About 
  • Certifications 
  • Sample Database 
  • Cheatsheet 
  • Glossary 
  • Blog 
  • Tags 
  1.   Sample Database
  1. Home
  2. Sample Database
  3. PostgreSQL Sample Database

PostgreSQL Sample Database

Share via
Howtodojo
Link copied to clipboard

PostgreSQL sample database with step-by-step guide on how to import and use the data

On this page
Introduction   jOOQ postgresql-sakila-db   Pagila   Price Paid Data from HM Land Registry   pgFoundry data samples   URL   Adventureworks for PostgreSQL   URL   Mouse Genome Sample Data   URL   DBT-2   IMDB Datasets   OMDB PostgreSQL   OpenStreetMap   US Bureau of Transportation Statistics - Reporting Carrier On-Time Performance   Freebase   SportsDB   DBPedia   biological annotation from NCBI’s ENTREZ system   Postgrespro DemoDB   StackExchange Data Dump   The Museum of Modern Art (MoMA) Collection   Dell DVD Store Database Test Suite   Postgresqltutorial Sample Database   Northwind Sample Database   Chinook Database   Yugabyte Data Sample   Pgexercises Data Sample   Musicbrainz Database Download   Open Source Shakespeare PostgreSQL   Sample PostgreSQL Database by raosaif   dvdrental   Sakila DVD Rental Database Analysis   Employees Database in PostgreSQL   PostgreSQL Samples Databases by Azure  

Introduction  

This page contains various PostgreSQL sample data.

jOOQ postgresql-sakila-db  

https://github.com/jOOQ/sakila/tree/main/postgres-sakila-db

Pagila  

https://github.com/devrimgunduz/pagila https://github.com/xzilla/pagila

Price Paid Data from HM Land Registry  

https://www.gov.uk/government/statistical-data-sets/price-paid-data-downloads#single-file

Download the csv file using the command below:

wget -c http://prod.publicdata.landregistry.gov.uk.s3-website-eu-west-1.amazonaws.com/pp-complete.csv

Login to PostgreSQL installation. Use the query below to create the table

-- Create table:
CREATE TABLE land_registry_price_paid_uk(
  transaction uuid,
  price numeric,
  transfer_date date,
  postcode text,
  property_type char(1),
  newly_built boolean,
  duration char(1),
  paon text,
  saon text,
  street text,
  locality text,
  city text,
  district text,
  county text,
  ppd_category_type char(1),
  record_status char(1));

Import the data to PostgreSQL

-- Copy CSV data, with appropriate munging:
COPY land_registry_price_paid_uk FROM 'pp-complete.csv' with (format csv, encoding 'win1252', header false, null '', quote '"', force_null (postcode, saon, paon, street, locality, city, district));

pgFoundry data samples  

URL  

  • https://www.postgresql.org/ftp/projects/pgFoundry/dbsamples/
  • https://github.com/morenoh149/postgresDBSamples

Adventureworks for PostgreSQL  

URL  

  • https://github.com/lorint/AdventureWorks-for-Postgres

Mouse Genome Sample Data  

URL  

  • http://www.informatics.jax.org/downloads/database_backups/
  • http://www.informatics.jax.org/software.shtml

DBT-2  

https://sourceforge.net/projects/osdldbt/files/dbt2/0.40/

IMDB Datasets  

https://datasets.imdbws.com/

OMDB PostgreSQL  

https://github.com/credativ/omdb-postgresql

OpenStreetMap  

https://wiki.openstreetmap.org/wiki/Planet.osm

US Bureau of Transportation Statistics - Reporting Carrier On-Time Performance  

https://developer.ibm.com/exchanges/data/all/airline/ https://transtats.bts.gov/PREZIP/

Freebase  

https://developers.google.com/freebase https://freebase-easy.cs.uni-freiburg.de/dump/

SportsDB  

http://www.sportsdb.org/sd/samples

DBPedia  

http://wikidata.dbpedia.org/develop/datasets

biological annotation from NCBI’s ENTREZ system  

https://ftp.ncbi.nih.gov/gene/DATA/

Postgrespro DemoDB  

https://postgrespro.com/education/demodb

StackExchange Data Dump  

https://archive.org/details/stackexchange https://github.com/Networks-Learning/stackexchange-dump-to-postgres

The Museum of Modern Art (MoMA) Collection  

https://github.com/MuseumofModernArt/collection

Dell DVD Store Database Test Suite  

https://linux.dell.com/dvdstore/

Postgresqltutorial Sample Database  

https://www.postgresqltutorial.com/postgresql-getting-started/postgresql-sample-database/

Northwind Sample Database  

https://www.becomingads.com/o/sample_db https://github.com/pthom/northwind_psql

Chinook Database  

https://github.com/lerocha/chinook-database/tree/master/ChinookDatabase/DataSources

Yugabyte Data Sample  

https://github.com/yugabyte/yugabyte-db/tree/master/sample

Pgexercises Data Sample  

https://pgexercises.com/dbfiles/clubdata.sql

Musicbrainz Database Download  

https://musicbrainz.org/doc/MusicBrainz_Database/Download

Open Source Shakespeare PostgreSQL  

https://github.com/catherinedevlin/opensourceshakespeare

Sample PostgreSQL Database by raosaif  

https://github.com/raosaif/sample_postgresql_database

dvdrental  

https://github.com/robconery/dvdrental

Sakila DVD Rental Database Analysis  

https://github.com/YashMotwani/Sakila-DVD-Rental-database-Analysis

Employees Database in PostgreSQL  

https://github.com/h8/employees-database

PostgreSQL Samples Databases by Azure  

  • https://github.com/Azure-Samples/postgresql-samples-databases

Before using any of these databases, make sure to check the documentation and licensing terms to ensure compliance with any usage restrictions. Additionally ensure you run the import on a test database.

On this page:
Introduction   jOOQ postgresql-sakila-db   Pagila   Price Paid Data from HM Land Registry   pgFoundry data samples   URL   Adventureworks for PostgreSQL   URL   Mouse Genome Sample Data   URL   DBT-2   IMDB Datasets   OMDB PostgreSQL   OpenStreetMap   US Bureau of Transportation Statistics - Reporting Carrier On-Time Performance   Freebase   SportsDB   DBPedia   biological annotation from NCBI’s ENTREZ system   Postgrespro DemoDB   StackExchange Data Dump   The Museum of Modern Art (MoMA) Collection   Dell DVD Store Database Test Suite   Postgresqltutorial Sample Database   Northwind Sample Database   Chinook Database   Yugabyte Data Sample   Pgexercises Data Sample   Musicbrainz Database Download   Open Source Shakespeare PostgreSQL   Sample PostgreSQL Database by raosaif   dvdrental   Sakila DVD Rental Database Analysis   Employees Database in PostgreSQL   PostgreSQL Samples Databases by Azure  
Follow me

We publish tutorials, tips and tricks about Linux, open source, cloud computing, and infrastructure

     
Copyright © 2012 - 2025 howtodojo.com. |
Howtodojo
Code copied to clipboard