Skip to content

Commit

Permalink
[#6368] Port Sakila database to DB2
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaseder committed Jun 30, 2017
1 parent 02ce0b0 commit 7e7eb2c
Show file tree
Hide file tree
Showing 5 changed files with 232,012 additions and 0 deletions.
12 changes: 12 additions & 0 deletions jOOQ-examples/Sakila/db2-sakila-db/ReadME.txt
@@ -0,0 +1,12 @@
Sakila for DB2 is a port of the Sakila example database available for MySQL, which was originally developed by Mike Hillyer of the MySQL AB documentation team.
This project is designed to help database administrators to decide which database to use for development of new products
The user can run the same SQL against different kind of databases and compare the performance

License: BSD
Copyright DB Software Laboratory and Data Geekery GmbH (DB2 port)
http://www.etl-tools.com / http://www.datageekery.com

Note:

Part of the insert scripts were generated by Advanced ETL Processor
http://www.etl-tools.com/etl-tools/advanced-etl-processor-enterprise/overview.html
36 changes: 36 additions & 0 deletions jOOQ-examples/Sakila/db2-sakila-db/db2-sakila-delete-data.sql
@@ -0,0 +1,36 @@
/*
Sakila for Oracle is a port of the Sakila example database available for MySQL, which was originally developed by Mike Hillyer of the MySQL AB documentation team.
This project is designed to help database administrators to decide which database to use for development of new products
The user can run the same SQL against different kind of databases and compare the performance
License: BSD
Copyright DB Software Laboratory
http://www.etl-tools.com
*/


-- Delete data
ALTER TABLE staff DROP CONSTRAINT fk_staff_address;
ALTER TABLE staff DROP CONSTRAINT fk_staff_store;
ALTER TABLE store DROP CONSTRAINT fk_store_staff;
DELETE FROM payment ;
DELETE FROM rental ;
DELETE FROM customer ;
DELETE FROM film_category ;
DELETE FROM film_text ;
DELETE FROM film_actor ;
DELETE FROM inventory ;
DELETE FROM film ;
DELETE FROM category ;
DELETE FROM staff ;
DELETE FROM store ;
DELETE FROM actor ;
DELETE FROM address ;
DELETE FROM city ;
DELETE FROM country ;
DELETE FROM language ;
ALTER TABLE staff ADD CONSTRAINT fk_staff_address FOREIGN KEY (address_id) REFERENCES address (address_id);
ALTER TABLE staff ADD CONSTRAINT fk_staff_store FOREIGN KEY (store_id) REFERENCES store (store_id);
ALTER TABLE store ADD CONSTRAINT fk_store_staff FOREIGN KEY (manager_staff_id) REFERENCES staff (staff_id);
41 changes: 41 additions & 0 deletions jOOQ-examples/Sakila/db2-sakila-db/db2-sakila-drop-objects.sql
@@ -0,0 +1,41 @@
/*
Sakila for DB2 is a port of the Sakila example database available for MySQL, which was originally developed by Mike Hillyer of the MySQL AB documentation team.
This project is designed to help database administrators to decide which database to use for development of new products
The user can run the same SQL against different kind of databases and compare the performance
License: BSD
Copyright DB Software Laboratory and Data Geekery GmbH (DB2 port)
http://www.etl-tools.com / http://www.datageekery.com
*/

-- Drop Views

DROP VIEW customer_list;
DROP VIEW film_list;
DROP VIEW sales_by_film_category;
DROP VIEW sales_by_store;
DROP VIEW staff_list;

-- Drop Tables

DROP TABLE payment;
DROP TABLE rental;
DROP TABLE inventory;
DROP TABLE film_text;
DROP TABLE film_category;
DROP TABLE film_actor;
DROP TABLE film;
DROP TABLE language;
DROP TABLE customer;
DROP TABLE actor;
DROP TABLE category;
ALTER TABLE staff DROP CONSTRAINT fk_staff_address;
ALTER TABLE store DROP CONSTRAINT fk_store_staff;
ALTER TABLE staff DROP CONSTRAINT fk_staff_store;
DROP TABLE store;
DROP TABLE address;
DROP TABLE staff;
DROP TABLE city;
DROP TABLE country;

0 comments on commit 7e7eb2c

Please sign in to comment.