An open API service indexing awesome lists of open source software.

https://github.com/benyakirten/f1db

The formula 1 database (f1db) for The Art of Postgres formatted as a SQL script
https://github.com/benyakirten/f1db

art mysql mysql-unsupported-authentication of postgres the

Last synced: 25 days ago
JSON representation

The formula 1 database (f1db) for The Art of Postgres formatted as a SQL script

Awesome Lists containing this project

README

          

The original database was downloaded from http://ergast.com/downloads/f1db.sql.gz. The SQL file was not compatible with Postgres, and pgloader had some difficulty interacting with the mysql database as described (even downgraded to mysql 8). Therefore, there have been some alterations made that allows the file to be easily loaded using the following command:

```bash
createdb f1db
psql -d f1db -U -f f1db.sql
```