EvanWieland / chati

πŸ“š CS370 DB project

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CS370 Project

Team

  • Evan Wieland
  • Samuel Carpenter
  • Jason Marks
  • Nick Albrecht

SoW

Located at sow.pdf

LDM

ERD

SQL

DDL for creating db & tables

Located at sql/spawn.sql

DDL for dropping db & tables

Located at sql/destroy.sql

DDL for creating db from backup

Located at sql/db.sql

Creating the DB WITH data

$ mysql -u username -p < /<ABSOLUTE_PATH>/chati/sql/db.sql

Or use SOURCE on the SQL file if a MySQL session has already been started.

Creating the DB WITHOUT data

$ mysql -u username -p < /<ABSOLUTE_PATH>/chati/sql/spawn.sql

Or use SOURCE on the SQL file if a MySQL session has already been started.

Destroying the DB

$ mysql -u username -p < /<ABSOLUTE_PATH>/chati/sql/destroy.sql

Or use SOURCE on the SQL file if a MySQL session has already been started.

Data

Located at data/sanitized/

Queries

Located at sql/example_queries.sql

About

πŸ“š CS370 DB project


Languages

Language:Python 100.0%