Giter VIP home page Giter VIP logo

csv-to-sqlite-challenge's Introduction

CSV to SQLite Challenge

Your goal is to get the 10085126 rows in big.csv into a SQLite table as quickly as possible, while respecting the Postgres null convention:

  • A totally empty CSV cell eg, FirstCell,,ThirdCell, should be treated as sql NULL.
  • A quoted empty CSV cell eg, FirstCell,"",ThirdCell should be treated as sql '' (empty string).

The sqlite3 cli that comes with SQLite will load both kinds of empty cell as sql '' (empty string), which means (for example) block.last_version could be ''.

Setup

  1. Download the compressed big.csv from Github releases and extract it.

  2. Create a database containing the block table: sqlite3 demo.sqlite < schema.sql

  3. Run your program to load big.csv into the block table. Note the first row is CSV header and shouldn't be included.

    Example (will fail due to null handling): sqlite3 demo.sqlite '.import --csv --skip 1 big.csv block'

csv-to-sqlite-challenge's People

Contributors

justjake avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.