mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-11 13:40:07 +00:00
1132 lines
46 KiB
SQL
1132 lines
46 KiB
SQL
-- MySQL dump 10.11
|
|
--
|
|
-- Host: localhost Database:
|
|
-- ------------------------------------------------------
|
|
-- Server version 5.0.67-0ubuntu6-log
|
|
|
|
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
|
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
|
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
|
|
/*!40101 SET NAMES utf8 */;
|
|
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
|
|
/*!40103 SET TIME_ZONE='+00:00' */;
|
|
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
|
|
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
|
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
|
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
|
|
|
--
|
|
-- Current Database: `mysql`
|
|
--
|
|
|
|
CREATE DATABASE /*!32312 IF NOT EXISTS*/ `mysql` /*!40100 DEFAULT CHARACTER SET latin1 */;
|
|
|
|
USE `mysql`;
|
|
|
|
--
|
|
-- Table structure for table `columns_priv`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `columns_priv`;
|
|
SET @saved_cs_client = @@character_set_client;
|
|
SET character_set_client = utf8;
|
|
CREATE TABLE `columns_priv` (
|
|
`Host` char(60) collate utf8_bin NOT NULL default '',
|
|
`Db` char(64) collate utf8_bin NOT NULL default '',
|
|
`User` char(16) collate utf8_bin NOT NULL default '',
|
|
`Table_name` char(64) collate utf8_bin NOT NULL default '',
|
|
`Column_name` char(64) collate utf8_bin NOT NULL default '',
|
|
`Timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
|
|
`Column_priv` set('Select','Insert','Update','References') character set utf8 NOT NULL default '',
|
|
PRIMARY KEY (`Host`,`Db`,`User`,`Table_name`,`Column_name`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Column privileges';
|
|
SET character_set_client = @saved_cs_client;
|
|
|
|
--
|
|
-- Table structure for table `db`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `db`;
|
|
SET @saved_cs_client = @@character_set_client;
|
|
SET character_set_client = utf8;
|
|
CREATE TABLE `db` (
|
|
`Host` char(60) collate utf8_bin NOT NULL default '',
|
|
`Db` char(64) collate utf8_bin NOT NULL default '',
|
|
`User` char(16) collate utf8_bin NOT NULL default '',
|
|
`Select_priv` enum('N','Y') character set utf8 NOT NULL default 'N',
|
|
`Insert_priv` enum('N','Y') character set utf8 NOT NULL default 'N',
|
|
`Update_priv` enum('N','Y') character set utf8 NOT NULL default 'N',
|
|
`Delete_priv` enum('N','Y') character set utf8 NOT NULL default 'N',
|
|
`Create_priv` enum('N','Y') character set utf8 NOT NULL default 'N',
|
|
`Drop_priv` enum('N','Y') character set utf8 NOT NULL default 'N',
|
|
`Grant_priv` enum('N','Y') character set utf8 NOT NULL default 'N',
|
|
`References_priv` enum('N','Y') character set utf8 NOT NULL default 'N',
|
|
`Index_priv` enum('N','Y') character set utf8 NOT NULL default 'N',
|
|
`Alter_priv` enum('N','Y') character set utf8 NOT NULL default 'N',
|
|
`Create_tmp_table_priv` enum('N','Y') character set utf8 NOT NULL default 'N',
|
|
`Lock_tables_priv` enum('N','Y') character set utf8 NOT NULL default 'N',
|
|
`Create_view_priv` enum('N','Y') character set utf8 NOT NULL default 'N',
|
|
`Show_view_priv` enum('N','Y') character set utf8 NOT NULL default 'N',
|
|
`Create_routine_priv` enum('N','Y') character set utf8 NOT NULL default 'N',
|
|
`Alter_routine_priv` enum('N','Y') character set utf8 NOT NULL default 'N',
|
|
`Execute_priv` enum('N','Y') character set utf8 NOT NULL default 'N',
|
|
PRIMARY KEY (`Host`,`Db`,`User`),
|
|
KEY `User` (`User`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Database privileges';
|
|
SET character_set_client = @saved_cs_client;
|
|
|
|
--
|
|
-- Table structure for table `func`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `func`;
|
|
SET @saved_cs_client = @@character_set_client;
|
|
SET character_set_client = utf8;
|
|
CREATE TABLE `func` (
|
|
`name` char(64) collate utf8_bin NOT NULL default '',
|
|
`ret` tinyint(1) NOT NULL default '0',
|
|
`dl` char(128) collate utf8_bin NOT NULL default '',
|
|
`type` enum('function','aggregate') character set utf8 NOT NULL,
|
|
PRIMARY KEY (`name`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='User defined functions';
|
|
SET character_set_client = @saved_cs_client;
|
|
|
|
--
|
|
-- Table structure for table `help_category`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `help_category`;
|
|
SET @saved_cs_client = @@character_set_client;
|
|
SET character_set_client = utf8;
|
|
CREATE TABLE `help_category` (
|
|
`help_category_id` smallint(5) unsigned NOT NULL,
|
|
`name` char(64) NOT NULL,
|
|
`parent_category_id` smallint(5) unsigned default NULL,
|
|
`url` char(128) NOT NULL,
|
|
PRIMARY KEY (`help_category_id`),
|
|
UNIQUE KEY `name` (`name`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='help categories';
|
|
SET character_set_client = @saved_cs_client;
|
|
|
|
--
|
|
-- Table structure for table `help_keyword`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `help_keyword`;
|
|
SET @saved_cs_client = @@character_set_client;
|
|
SET character_set_client = utf8;
|
|
CREATE TABLE `help_keyword` (
|
|
`help_keyword_id` int(10) unsigned NOT NULL,
|
|
`name` char(64) NOT NULL,
|
|
PRIMARY KEY (`help_keyword_id`),
|
|
UNIQUE KEY `name` (`name`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='help keywords';
|
|
SET character_set_client = @saved_cs_client;
|
|
|
|
--
|
|
-- Table structure for table `help_relation`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `help_relation`;
|
|
SET @saved_cs_client = @@character_set_client;
|
|
SET character_set_client = utf8;
|
|
CREATE TABLE `help_relation` (
|
|
`help_topic_id` int(10) unsigned NOT NULL,
|
|
`help_keyword_id` int(10) unsigned NOT NULL,
|
|
PRIMARY KEY (`help_keyword_id`,`help_topic_id`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='keyword-topic relation';
|
|
SET character_set_client = @saved_cs_client;
|
|
|
|
--
|
|
-- Table structure for table `help_topic`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `help_topic`;
|
|
SET @saved_cs_client = @@character_set_client;
|
|
SET character_set_client = utf8;
|
|
CREATE TABLE `help_topic` (
|
|
`help_topic_id` int(10) unsigned NOT NULL,
|
|
`name` char(64) NOT NULL,
|
|
`help_category_id` smallint(5) unsigned NOT NULL,
|
|
`description` text NOT NULL,
|
|
`example` text NOT NULL,
|
|
`url` char(128) NOT NULL,
|
|
PRIMARY KEY (`help_topic_id`),
|
|
UNIQUE KEY `name` (`name`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='help topics';
|
|
SET character_set_client = @saved_cs_client;
|
|
|
|
--
|
|
-- Table structure for table `host`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `host`;
|
|
SET @saved_cs_client = @@character_set_client;
|
|
SET character_set_client = utf8;
|
|
CREATE TABLE `host` (
|
|
`Host` char(60) collate utf8_bin NOT NULL default '',
|
|
`Db` char(64) collate utf8_bin NOT NULL default '',
|
|
`Select_priv` enum('N','Y') character set utf8 NOT NULL default 'N',
|
|
`Insert_priv` enum('N','Y') character set utf8 NOT NULL default 'N',
|
|
`Update_priv` enum('N','Y') character set utf8 NOT NULL default 'N',
|
|
`Delete_priv` enum('N','Y') character set utf8 NOT NULL default 'N',
|
|
`Create_priv` enum('N','Y') character set utf8 NOT NULL default 'N',
|
|
`Drop_priv` enum('N','Y') character set utf8 NOT NULL default 'N',
|
|
`Grant_priv` enum('N','Y') character set utf8 NOT NULL default 'N',
|
|
`References_priv` enum('N','Y') character set utf8 NOT NULL default 'N',
|
|
`Index_priv` enum('N','Y') character set utf8 NOT NULL default 'N',
|
|
`Alter_priv` enum('N','Y') character set utf8 NOT NULL default 'N',
|
|
`Create_tmp_table_priv` enum('N','Y') character set utf8 NOT NULL default 'N',
|
|
`Lock_tables_priv` enum('N','Y') character set utf8 NOT NULL default 'N',
|
|
`Create_view_priv` enum('N','Y') character set utf8 NOT NULL default 'N',
|
|
`Show_view_priv` enum('N','Y') character set utf8 NOT NULL default 'N',
|
|
`Create_routine_priv` enum('N','Y') character set utf8 NOT NULL default 'N',
|
|
`Alter_routine_priv` enum('N','Y') character set utf8 NOT NULL default 'N',
|
|
`Execute_priv` enum('N','Y') character set utf8 NOT NULL default 'N',
|
|
PRIMARY KEY (`Host`,`Db`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Host privileges; Merged with database privileges';
|
|
SET character_set_client = @saved_cs_client;
|
|
|
|
--
|
|
-- Table structure for table `proc`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `proc`;
|
|
SET @saved_cs_client = @@character_set_client;
|
|
SET character_set_client = utf8;
|
|
CREATE TABLE `proc` (
|
|
`db` char(64) character set utf8 collate utf8_bin NOT NULL default '',
|
|
`name` char(64) NOT NULL default '',
|
|
`type` enum('FUNCTION','PROCEDURE') NOT NULL,
|
|
`specific_name` char(64) NOT NULL default '',
|
|
`language` enum('SQL') NOT NULL default 'SQL',
|
|
`sql_data_access` enum('CONTAINS_SQL','NO_SQL','READS_SQL_DATA','MODIFIES_SQL_DATA') NOT NULL default 'CONTAINS_SQL',
|
|
`is_deterministic` enum('YES','NO') NOT NULL default 'NO',
|
|
`security_type` enum('INVOKER','DEFINER') NOT NULL default 'DEFINER',
|
|
`param_list` blob NOT NULL,
|
|
`returns` char(64) NOT NULL default '',
|
|
`body` longblob NOT NULL,
|
|
`definer` char(77) character set utf8 collate utf8_bin NOT NULL default '',
|
|
`created` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
|
|
`modified` timestamp NOT NULL default '0000-00-00 00:00:00',
|
|
`sql_mode` set('REAL_AS_FLOAT','PIPES_AS_CONCAT','ANSI_QUOTES','IGNORE_SPACE','NOT_USED','ONLY_FULL_GROUP_BY','NO_UNSIGNED_SUBTRACTION','NO_DIR_IN_CREATE','POSTGRESQL','ORACLE','MSSQL','DB2','MAXDB','NO_KEY_OPTIONS','NO_TABLE_OPTIONS','NO_FIELD_OPTIONS','MYSQL323','MYSQL40','ANSI','NO_AUTO_VALUE_ON_ZERO','NO_BACKSLASH_ESCAPES','STRICT_TRANS_TABLES','STRICT_ALL_TABLES','NO_ZERO_IN_DATE','NO_ZERO_DATE','INVALID_DATES','ERROR_FOR_DIVISION_BY_ZERO','TRADITIONAL','NO_AUTO_CREATE_USER','HIGH_NOT_PRECEDENCE') NOT NULL default '',
|
|
`comment` char(64) character set utf8 collate utf8_bin NOT NULL default '',
|
|
PRIMARY KEY (`db`,`name`,`type`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Stored Procedures';
|
|
SET character_set_client = @saved_cs_client;
|
|
|
|
--
|
|
-- Table structure for table `procs_priv`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `procs_priv`;
|
|
SET @saved_cs_client = @@character_set_client;
|
|
SET character_set_client = utf8;
|
|
CREATE TABLE `procs_priv` (
|
|
`Host` char(60) collate utf8_bin NOT NULL default '',
|
|
`Db` char(64) collate utf8_bin NOT NULL default '',
|
|
`User` char(16) collate utf8_bin NOT NULL default '',
|
|
`Routine_name` char(64) collate utf8_bin NOT NULL default '',
|
|
`Routine_type` enum('FUNCTION','PROCEDURE') collate utf8_bin NOT NULL,
|
|
`Grantor` char(77) collate utf8_bin NOT NULL default '',
|
|
`Proc_priv` set('Execute','Alter Routine','Grant') character set utf8 NOT NULL default '',
|
|
`Timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
|
|
PRIMARY KEY (`Host`,`Db`,`User`,`Routine_name`,`Routine_type`),
|
|
KEY `Grantor` (`Grantor`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Procedure privileges';
|
|
SET character_set_client = @saved_cs_client;
|
|
|
|
--
|
|
-- Table structure for table `tables_priv`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `tables_priv`;
|
|
SET @saved_cs_client = @@character_set_client;
|
|
SET character_set_client = utf8;
|
|
CREATE TABLE `tables_priv` (
|
|
`Host` char(60) collate utf8_bin NOT NULL default '',
|
|
`Db` char(64) collate utf8_bin NOT NULL default '',
|
|
`User` char(16) collate utf8_bin NOT NULL default '',
|
|
`Table_name` char(64) collate utf8_bin NOT NULL default '',
|
|
`Grantor` char(77) collate utf8_bin NOT NULL default '',
|
|
`Timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
|
|
`Table_priv` set('Select','Insert','Update','Delete','Create','Drop','Grant','References','Index','Alter','Create View','Show view') character set utf8 NOT NULL default '',
|
|
`Column_priv` set('Select','Insert','Update','References') character set utf8 NOT NULL default '',
|
|
PRIMARY KEY (`Host`,`Db`,`User`,`Table_name`),
|
|
KEY `Grantor` (`Grantor`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Table privileges';
|
|
SET character_set_client = @saved_cs_client;
|
|
|
|
--
|
|
-- Table structure for table `time_zone`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `time_zone`;
|
|
SET @saved_cs_client = @@character_set_client;
|
|
SET character_set_client = utf8;
|
|
CREATE TABLE `time_zone` (
|
|
`Time_zone_id` int(10) unsigned NOT NULL auto_increment,
|
|
`Use_leap_seconds` enum('Y','N') NOT NULL default 'N',
|
|
PRIMARY KEY (`Time_zone_id`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Time zones';
|
|
SET character_set_client = @saved_cs_client;
|
|
|
|
--
|
|
-- Table structure for table `time_zone_leap_second`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `time_zone_leap_second`;
|
|
SET @saved_cs_client = @@character_set_client;
|
|
SET character_set_client = utf8;
|
|
CREATE TABLE `time_zone_leap_second` (
|
|
`Transition_time` bigint(20) NOT NULL,
|
|
`Correction` int(11) NOT NULL,
|
|
PRIMARY KEY (`Transition_time`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Leap seconds information for time zones';
|
|
SET character_set_client = @saved_cs_client;
|
|
|
|
--
|
|
-- Table structure for table `time_zone_name`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `time_zone_name`;
|
|
SET @saved_cs_client = @@character_set_client;
|
|
SET character_set_client = utf8;
|
|
CREATE TABLE `time_zone_name` (
|
|
`Name` char(64) NOT NULL,
|
|
`Time_zone_id` int(10) unsigned NOT NULL,
|
|
PRIMARY KEY (`Name`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Time zone names';
|
|
SET character_set_client = @saved_cs_client;
|
|
|
|
--
|
|
-- Table structure for table `time_zone_transition`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `time_zone_transition`;
|
|
SET @saved_cs_client = @@character_set_client;
|
|
SET character_set_client = utf8;
|
|
CREATE TABLE `time_zone_transition` (
|
|
`Time_zone_id` int(10) unsigned NOT NULL,
|
|
`Transition_time` bigint(20) NOT NULL,
|
|
`Transition_type_id` int(10) unsigned NOT NULL,
|
|
PRIMARY KEY (`Time_zone_id`,`Transition_time`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Time zone transitions';
|
|
SET character_set_client = @saved_cs_client;
|
|
|
|
--
|
|
-- Table structure for table `time_zone_transition_type`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `time_zone_transition_type`;
|
|
SET @saved_cs_client = @@character_set_client;
|
|
SET character_set_client = utf8;
|
|
CREATE TABLE `time_zone_transition_type` (
|
|
`Time_zone_id` int(10) unsigned NOT NULL,
|
|
`Transition_type_id` int(10) unsigned NOT NULL,
|
|
`Offset` int(11) NOT NULL default '0',
|
|
`Is_DST` tinyint(3) unsigned NOT NULL default '0',
|
|
`Abbreviation` char(8) NOT NULL default '',
|
|
PRIMARY KEY (`Time_zone_id`,`Transition_type_id`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Time zone transition types';
|
|
SET character_set_client = @saved_cs_client;
|
|
|
|
--
|
|
-- Table structure for table `user`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `user`;
|
|
SET @saved_cs_client = @@character_set_client;
|
|
SET character_set_client = utf8;
|
|
CREATE TABLE `user` (
|
|
`Host` char(60) collate utf8_bin NOT NULL default '',
|
|
`User` char(16) collate utf8_bin NOT NULL default '',
|
|
`Password` char(41) character set latin1 collate latin1_bin NOT NULL default '',
|
|
`Select_priv` enum('N','Y') character set utf8 NOT NULL default 'N',
|
|
`Insert_priv` enum('N','Y') character set utf8 NOT NULL default 'N',
|
|
`Update_priv` enum('N','Y') character set utf8 NOT NULL default 'N',
|
|
`Delete_priv` enum('N','Y') character set utf8 NOT NULL default 'N',
|
|
`Create_priv` enum('N','Y') character set utf8 NOT NULL default 'N',
|
|
`Drop_priv` enum('N','Y') character set utf8 NOT NULL default 'N',
|
|
`Reload_priv` enum('N','Y') character set utf8 NOT NULL default 'N',
|
|
`Shutdown_priv` enum('N','Y') character set utf8 NOT NULL default 'N',
|
|
`Process_priv` enum('N','Y') character set utf8 NOT NULL default 'N',
|
|
`File_priv` enum('N','Y') character set utf8 NOT NULL default 'N',
|
|
`Grant_priv` enum('N','Y') character set utf8 NOT NULL default 'N',
|
|
`References_priv` enum('N','Y') character set utf8 NOT NULL default 'N',
|
|
`Index_priv` enum('N','Y') character set utf8 NOT NULL default 'N',
|
|
`Alter_priv` enum('N','Y') character set utf8 NOT NULL default 'N',
|
|
`Show_db_priv` enum('N','Y') character set utf8 NOT NULL default 'N',
|
|
`Super_priv` enum('N','Y') character set utf8 NOT NULL default 'N',
|
|
`Create_tmp_table_priv` enum('N','Y') character set utf8 NOT NULL default 'N',
|
|
`Lock_tables_priv` enum('N','Y') character set utf8 NOT NULL default 'N',
|
|
`Execute_priv` enum('N','Y') character set utf8 NOT NULL default 'N',
|
|
`Repl_slave_priv` enum('N','Y') character set utf8 NOT NULL default 'N',
|
|
`Repl_client_priv` enum('N','Y') character set utf8 NOT NULL default 'N',
|
|
`Create_view_priv` enum('N','Y') character set utf8 NOT NULL default 'N',
|
|
`Show_view_priv` enum('N','Y') character set utf8 NOT NULL default 'N',
|
|
`Create_routine_priv` enum('N','Y') character set utf8 NOT NULL default 'N',
|
|
`Alter_routine_priv` enum('N','Y') character set utf8 NOT NULL default 'N',
|
|
`Create_user_priv` enum('N','Y') character set utf8 NOT NULL default 'N',
|
|
`ssl_type` enum('','ANY','X509','SPECIFIED') character set utf8 NOT NULL default '',
|
|
`ssl_cipher` blob NOT NULL,
|
|
`x509_issuer` blob NOT NULL,
|
|
`x509_subject` blob NOT NULL,
|
|
`max_questions` int(11) unsigned NOT NULL default '0',
|
|
`max_updates` int(11) unsigned NOT NULL default '0',
|
|
`max_connections` int(11) unsigned NOT NULL default '0',
|
|
`max_user_connections` int(11) unsigned NOT NULL default '0',
|
|
PRIMARY KEY (`Host`,`User`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Users and global privileges';
|
|
SET character_set_client = @saved_cs_client;
|
|
|
|
--
|
|
-- Current Database: `sakila`
|
|
--
|
|
|
|
CREATE DATABASE /*!32312 IF NOT EXISTS*/ `sakila` /*!40100 DEFAULT CHARACTER SET latin1 */;
|
|
|
|
USE `sakila`;
|
|
|
|
--
|
|
-- Table structure for table `actor`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `actor`;
|
|
SET @saved_cs_client = @@character_set_client;
|
|
SET character_set_client = utf8;
|
|
CREATE TABLE `actor` (
|
|
`actor_id` smallint(5) unsigned NOT NULL auto_increment,
|
|
`first_name` varchar(45) NOT NULL,
|
|
`last_name` varchar(45) NOT NULL,
|
|
`last_update` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
|
|
PRIMARY KEY (`actor_id`),
|
|
KEY `idx_actor_last_name` (`last_name`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=201 DEFAULT CHARSET=utf8;
|
|
SET character_set_client = @saved_cs_client;
|
|
|
|
--
|
|
-- Temporary table structure for view `actor_info`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `actor_info`;
|
|
/*!50001 DROP VIEW IF EXISTS `actor_info`*/;
|
|
/*!50001 CREATE TABLE `actor_info` (
|
|
`actor_id` smallint(5) unsigned,
|
|
`first_name` varchar(45),
|
|
`last_name` varchar(45),
|
|
`film_info` varchar(341)
|
|
) */;
|
|
|
|
--
|
|
-- Table structure for table `address`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `address`;
|
|
SET @saved_cs_client = @@character_set_client;
|
|
SET character_set_client = utf8;
|
|
CREATE TABLE `address` (
|
|
`address_id` smallint(5) unsigned NOT NULL auto_increment,
|
|
`address` varchar(50) NOT NULL,
|
|
`address2` varchar(50) default NULL,
|
|
`district` varchar(20) NOT NULL,
|
|
`city_id` smallint(5) unsigned NOT NULL,
|
|
`postal_code` varchar(10) default NULL,
|
|
`phone` varchar(20) NOT NULL,
|
|
`last_update` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
|
|
PRIMARY KEY (`address_id`),
|
|
KEY `idx_fk_city_id` (`city_id`),
|
|
CONSTRAINT `fk_address_city` FOREIGN KEY (`city_id`) REFERENCES `city` (`city_id`) ON UPDATE CASCADE
|
|
) ENGINE=InnoDB AUTO_INCREMENT=606 DEFAULT CHARSET=utf8;
|
|
SET character_set_client = @saved_cs_client;
|
|
|
|
--
|
|
-- Table structure for table `category`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `category`;
|
|
SET @saved_cs_client = @@character_set_client;
|
|
SET character_set_client = utf8;
|
|
CREATE TABLE `category` (
|
|
`category_id` tinyint(3) unsigned NOT NULL auto_increment,
|
|
`name` varchar(25) NOT NULL,
|
|
`last_update` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
|
|
PRIMARY KEY (`category_id`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8;
|
|
SET character_set_client = @saved_cs_client;
|
|
|
|
--
|
|
-- Table structure for table `city`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `city`;
|
|
SET @saved_cs_client = @@character_set_client;
|
|
SET character_set_client = utf8;
|
|
CREATE TABLE `city` (
|
|
`city_id` smallint(5) unsigned NOT NULL auto_increment,
|
|
`city` varchar(50) NOT NULL,
|
|
`country_id` smallint(5) unsigned NOT NULL,
|
|
`last_update` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
|
|
PRIMARY KEY (`city_id`),
|
|
KEY `idx_fk_country_id` (`country_id`),
|
|
CONSTRAINT `fk_city_country` FOREIGN KEY (`country_id`) REFERENCES `country` (`country_id`) ON UPDATE CASCADE
|
|
) ENGINE=InnoDB AUTO_INCREMENT=601 DEFAULT CHARSET=utf8;
|
|
SET character_set_client = @saved_cs_client;
|
|
|
|
--
|
|
-- Table structure for table `country`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `country`;
|
|
SET @saved_cs_client = @@character_set_client;
|
|
SET character_set_client = utf8;
|
|
CREATE TABLE `country` (
|
|
`country_id` smallint(5) unsigned NOT NULL auto_increment,
|
|
`country` varchar(50) NOT NULL,
|
|
`last_update` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
|
|
PRIMARY KEY (`country_id`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=110 DEFAULT CHARSET=utf8;
|
|
SET character_set_client = @saved_cs_client;
|
|
|
|
--
|
|
-- Table structure for table `customer`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `customer`;
|
|
SET @saved_cs_client = @@character_set_client;
|
|
SET character_set_client = utf8;
|
|
CREATE TABLE `customer` (
|
|
`customer_id` smallint(5) unsigned NOT NULL auto_increment,
|
|
`store_id` tinyint(3) unsigned NOT NULL,
|
|
`first_name` varchar(45) NOT NULL,
|
|
`last_name` varchar(45) NOT NULL,
|
|
`email` varchar(50) default NULL,
|
|
`address_id` smallint(5) unsigned NOT NULL,
|
|
`active` tinyint(1) NOT NULL default '1',
|
|
`create_date` datetime NOT NULL,
|
|
`last_update` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
|
|
PRIMARY KEY (`customer_id`),
|
|
KEY `idx_fk_store_id` (`store_id`),
|
|
KEY `idx_fk_address_id` (`address_id`),
|
|
KEY `idx_last_name` (`last_name`),
|
|
CONSTRAINT `fk_customer_address` FOREIGN KEY (`address_id`) REFERENCES `address` (`address_id`) ON UPDATE CASCADE,
|
|
CONSTRAINT `fk_customer_store` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON UPDATE CASCADE
|
|
) ENGINE=InnoDB AUTO_INCREMENT=600 DEFAULT CHARSET=utf8;
|
|
SET character_set_client = @saved_cs_client;
|
|
|
|
/*!50003 SET @SAVE_SQL_MODE=@@SQL_MODE*/;
|
|
|
|
DELIMITER ;;
|
|
/*!50003 SET SESSION SQL_MODE="STRICT_TRANS_TABLES,STRICT_ALL_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,TRADITIONAL,NO_AUTO_CREATE_USER" */;;
|
|
/*!50003 CREATE */ /*!50017 DEFINER=`root`@`%` */ /*!50003 TRIGGER `customer_create_date` BEFORE INSERT ON `customer` FOR EACH ROW SET NEW.create_date = NOW() */;;
|
|
|
|
DELIMITER ;
|
|
/*!50003 SET SESSION SQL_MODE=@SAVE_SQL_MODE*/;
|
|
|
|
--
|
|
-- Temporary table structure for view `customer_list`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `customer_list`;
|
|
/*!50001 DROP VIEW IF EXISTS `customer_list`*/;
|
|
/*!50001 CREATE TABLE `customer_list` (
|
|
`ID` smallint(5) unsigned,
|
|
`name` varchar(91),
|
|
`address` varchar(50),
|
|
`zip code` varchar(10),
|
|
`phone` varchar(20),
|
|
`city` varchar(50),
|
|
`country` varchar(50),
|
|
`notes` varchar(6),
|
|
`SID` tinyint(3) unsigned
|
|
) */;
|
|
|
|
--
|
|
-- Table structure for table `film`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `film`;
|
|
SET @saved_cs_client = @@character_set_client;
|
|
SET character_set_client = utf8;
|
|
CREATE TABLE `film` (
|
|
`film_id` smallint(5) unsigned NOT NULL auto_increment,
|
|
`title` varchar(255) NOT NULL,
|
|
`description` text,
|
|
`release_year` year(4) default NULL,
|
|
`language_id` tinyint(3) unsigned NOT NULL,
|
|
`original_language_id` tinyint(3) unsigned default NULL,
|
|
`rental_duration` tinyint(3) unsigned NOT NULL default '3',
|
|
`rental_rate` decimal(4,2) NOT NULL default '4.99',
|
|
`length` smallint(5) unsigned default NULL,
|
|
`replacement_cost` decimal(5,2) NOT NULL default '19.99',
|
|
`rating` enum('G','PG','PG-13','R','NC-17') default 'G',
|
|
`special_features` set('Trailers','Commentaries','Deleted Scenes','Behind the Scenes') default NULL,
|
|
`last_update` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
|
|
PRIMARY KEY (`film_id`),
|
|
KEY `idx_title` (`title`),
|
|
KEY `idx_fk_language_id` (`language_id`),
|
|
KEY `idx_fk_original_language_id` (`original_language_id`),
|
|
CONSTRAINT `fk_film_language` FOREIGN KEY (`language_id`) REFERENCES `language` (`language_id`) ON UPDATE CASCADE,
|
|
CONSTRAINT `fk_film_language_original` FOREIGN KEY (`original_language_id`) REFERENCES `language` (`language_id`) ON UPDATE CASCADE
|
|
) ENGINE=InnoDB AUTO_INCREMENT=1001 DEFAULT CHARSET=utf8;
|
|
SET character_set_client = @saved_cs_client;
|
|
|
|
/*!50003 SET @SAVE_SQL_MODE=@@SQL_MODE*/;
|
|
|
|
DELIMITER ;;
|
|
/*!50003 SET SESSION SQL_MODE="STRICT_TRANS_TABLES,STRICT_ALL_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,TRADITIONAL,NO_AUTO_CREATE_USER" */;;
|
|
/*!50003 CREATE */ /*!50017 DEFINER=`root`@`%` */ /*!50003 TRIGGER `ins_film` AFTER INSERT ON `film` FOR EACH ROW BEGIN
|
|
INSERT INTO film_text (film_id, title, description)
|
|
VALUES (new.film_id, new.title, new.description);
|
|
END */;;
|
|
|
|
/*!50003 SET SESSION SQL_MODE="STRICT_TRANS_TABLES,STRICT_ALL_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,TRADITIONAL,NO_AUTO_CREATE_USER" */;;
|
|
/*!50003 CREATE */ /*!50017 DEFINER=`root`@`%` */ /*!50003 TRIGGER `upd_film` AFTER UPDATE ON `film` FOR EACH ROW BEGIN
|
|
IF (old.title != new.title) or (old.description != new.description)
|
|
THEN
|
|
UPDATE film_text
|
|
SET title=new.title,
|
|
description=new.description,
|
|
film_id=new.film_id
|
|
WHERE film_id=old.film_id;
|
|
END IF;
|
|
END */;;
|
|
|
|
/*!50003 SET SESSION SQL_MODE="STRICT_TRANS_TABLES,STRICT_ALL_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,TRADITIONAL,NO_AUTO_CREATE_USER" */;;
|
|
/*!50003 CREATE */ /*!50017 DEFINER=`root`@`%` */ /*!50003 TRIGGER `del_film` AFTER DELETE ON `film` FOR EACH ROW BEGIN
|
|
DELETE FROM film_text WHERE film_id = old.film_id;
|
|
END */;;
|
|
|
|
DELIMITER ;
|
|
/*!50003 SET SESSION SQL_MODE=@SAVE_SQL_MODE*/;
|
|
|
|
--
|
|
-- Table structure for table `film_actor`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `film_actor`;
|
|
SET @saved_cs_client = @@character_set_client;
|
|
SET character_set_client = utf8;
|
|
CREATE TABLE `film_actor` (
|
|
`actor_id` smallint(5) unsigned NOT NULL,
|
|
`film_id` smallint(5) unsigned NOT NULL,
|
|
`last_update` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
|
|
PRIMARY KEY (`actor_id`,`film_id`),
|
|
KEY `idx_fk_film_id` (`film_id`),
|
|
CONSTRAINT `fk_film_actor_actor` FOREIGN KEY (`actor_id`) REFERENCES `actor` (`actor_id`) ON UPDATE CASCADE,
|
|
CONSTRAINT `fk_film_actor_film` FOREIGN KEY (`film_id`) REFERENCES `film` (`film_id`) ON UPDATE CASCADE
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
SET character_set_client = @saved_cs_client;
|
|
|
|
--
|
|
-- Table structure for table `film_category`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `film_category`;
|
|
SET @saved_cs_client = @@character_set_client;
|
|
SET character_set_client = utf8;
|
|
CREATE TABLE `film_category` (
|
|
`film_id` smallint(5) unsigned NOT NULL,
|
|
`category_id` tinyint(3) unsigned NOT NULL,
|
|
`last_update` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
|
|
PRIMARY KEY (`film_id`,`category_id`),
|
|
KEY `fk_film_category_category` (`category_id`),
|
|
CONSTRAINT `fk_film_category_category` FOREIGN KEY (`category_id`) REFERENCES `category` (`category_id`) ON UPDATE CASCADE,
|
|
CONSTRAINT `fk_film_category_film` FOREIGN KEY (`film_id`) REFERENCES `film` (`film_id`) ON UPDATE CASCADE
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
SET character_set_client = @saved_cs_client;
|
|
|
|
--
|
|
-- Temporary table structure for view `film_list`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `film_list`;
|
|
/*!50001 DROP VIEW IF EXISTS `film_list`*/;
|
|
/*!50001 CREATE TABLE `film_list` (
|
|
`FID` smallint(5) unsigned,
|
|
`title` varchar(255),
|
|
`description` text,
|
|
`category` varchar(25),
|
|
`price` decimal(4,2),
|
|
`length` smallint(5) unsigned,
|
|
`rating` enum('G','PG','PG-13','R','NC-17'),
|
|
`actors` varchar(341)
|
|
) */;
|
|
|
|
--
|
|
-- Table structure for table `film_text`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `film_text`;
|
|
SET @saved_cs_client = @@character_set_client;
|
|
SET character_set_client = utf8;
|
|
CREATE TABLE `film_text` (
|
|
`film_id` smallint(6) NOT NULL,
|
|
`title` varchar(255) NOT NULL,
|
|
`description` text,
|
|
PRIMARY KEY (`film_id`),
|
|
FULLTEXT KEY `idx_title_description` (`title`,`description`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
|
SET character_set_client = @saved_cs_client;
|
|
|
|
--
|
|
-- Table structure for table `inventory`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `inventory`;
|
|
SET @saved_cs_client = @@character_set_client;
|
|
SET character_set_client = utf8;
|
|
CREATE TABLE `inventory` (
|
|
`inventory_id` mediumint(8) unsigned NOT NULL auto_increment,
|
|
`film_id` smallint(5) unsigned NOT NULL,
|
|
`store_id` tinyint(3) unsigned NOT NULL,
|
|
`last_update` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
|
|
PRIMARY KEY (`inventory_id`),
|
|
KEY `idx_fk_film_id` (`film_id`),
|
|
KEY `idx_store_id_film_id` (`store_id`,`film_id`),
|
|
CONSTRAINT `fk_inventory_film` FOREIGN KEY (`film_id`) REFERENCES `film` (`film_id`) ON UPDATE CASCADE,
|
|
CONSTRAINT `fk_inventory_store` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON UPDATE CASCADE
|
|
) ENGINE=InnoDB AUTO_INCREMENT=4582 DEFAULT CHARSET=utf8;
|
|
SET character_set_client = @saved_cs_client;
|
|
|
|
--
|
|
-- Table structure for table `language`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `language`;
|
|
SET @saved_cs_client = @@character_set_client;
|
|
SET character_set_client = utf8;
|
|
CREATE TABLE `language` (
|
|
`language_id` tinyint(3) unsigned NOT NULL auto_increment,
|
|
`name` char(20) NOT NULL,
|
|
`last_update` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
|
|
PRIMARY KEY (`language_id`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;
|
|
SET character_set_client = @saved_cs_client;
|
|
|
|
--
|
|
-- Temporary table structure for view `nicer_but_slower_film_list`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `nicer_but_slower_film_list`;
|
|
/*!50001 DROP VIEW IF EXISTS `nicer_but_slower_film_list`*/;
|
|
/*!50001 CREATE TABLE `nicer_but_slower_film_list` (
|
|
`FID` smallint(5) unsigned,
|
|
`title` varchar(255),
|
|
`description` text,
|
|
`category` varchar(25),
|
|
`price` decimal(4,2),
|
|
`length` smallint(5) unsigned,
|
|
`rating` enum('G','PG','PG-13','R','NC-17'),
|
|
`actors` varchar(341)
|
|
) */;
|
|
|
|
--
|
|
-- Table structure for table `payment`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `payment`;
|
|
SET @saved_cs_client = @@character_set_client;
|
|
SET character_set_client = utf8;
|
|
CREATE TABLE `payment` (
|
|
`payment_id` smallint(5) unsigned NOT NULL auto_increment,
|
|
`customer_id` smallint(5) unsigned NOT NULL,
|
|
`staff_id` tinyint(3) unsigned NOT NULL,
|
|
`rental_id` int(11) default NULL,
|
|
`amount` decimal(5,2) NOT NULL,
|
|
`payment_date` datetime NOT NULL,
|
|
`last_update` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
|
|
PRIMARY KEY (`payment_id`),
|
|
KEY `idx_fk_staff_id` (`staff_id`),
|
|
KEY `idx_fk_customer_id` (`customer_id`),
|
|
KEY `fk_payment_rental` (`rental_id`),
|
|
CONSTRAINT `fk_payment_customer` FOREIGN KEY (`customer_id`) REFERENCES `customer` (`customer_id`) ON UPDATE CASCADE,
|
|
CONSTRAINT `fk_payment_rental` FOREIGN KEY (`rental_id`) REFERENCES `rental` (`rental_id`) ON DELETE SET NULL ON UPDATE CASCADE,
|
|
CONSTRAINT `fk_payment_staff` FOREIGN KEY (`staff_id`) REFERENCES `staff` (`staff_id`) ON UPDATE CASCADE
|
|
) ENGINE=InnoDB AUTO_INCREMENT=16050 DEFAULT CHARSET=utf8;
|
|
SET character_set_client = @saved_cs_client;
|
|
|
|
/*!50003 SET @SAVE_SQL_MODE=@@SQL_MODE*/;
|
|
|
|
DELIMITER ;;
|
|
/*!50003 SET SESSION SQL_MODE="STRICT_TRANS_TABLES,STRICT_ALL_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,TRADITIONAL,NO_AUTO_CREATE_USER" */;;
|
|
/*!50003 CREATE */ /*!50017 DEFINER=`root`@`%` */ /*!50003 TRIGGER `payment_date` BEFORE INSERT ON `payment` FOR EACH ROW SET NEW.payment_date = NOW() */;;
|
|
|
|
DELIMITER ;
|
|
/*!50003 SET SESSION SQL_MODE=@SAVE_SQL_MODE*/;
|
|
|
|
--
|
|
-- Table structure for table `rental`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `rental`;
|
|
SET @saved_cs_client = @@character_set_client;
|
|
SET character_set_client = utf8;
|
|
CREATE TABLE `rental` (
|
|
`rental_id` int(11) NOT NULL auto_increment,
|
|
`rental_date` datetime NOT NULL,
|
|
`inventory_id` mediumint(8) unsigned NOT NULL,
|
|
`customer_id` smallint(5) unsigned NOT NULL,
|
|
`return_date` datetime default NULL,
|
|
`staff_id` tinyint(3) unsigned NOT NULL,
|
|
`last_update` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
|
|
PRIMARY KEY (`rental_id`),
|
|
UNIQUE KEY `rental_date` (`rental_date`,`inventory_id`,`customer_id`),
|
|
KEY `idx_fk_inventory_id` (`inventory_id`),
|
|
KEY `idx_fk_customer_id` (`customer_id`),
|
|
KEY `idx_fk_staff_id` (`staff_id`),
|
|
CONSTRAINT `fk_rental_customer` FOREIGN KEY (`customer_id`) REFERENCES `customer` (`customer_id`) ON UPDATE CASCADE,
|
|
CONSTRAINT `fk_rental_inventory` FOREIGN KEY (`inventory_id`) REFERENCES `inventory` (`inventory_id`) ON UPDATE CASCADE,
|
|
CONSTRAINT `fk_rental_staff` FOREIGN KEY (`staff_id`) REFERENCES `staff` (`staff_id`) ON UPDATE CASCADE
|
|
) ENGINE=InnoDB AUTO_INCREMENT=16050 DEFAULT CHARSET=utf8;
|
|
SET character_set_client = @saved_cs_client;
|
|
|
|
/*!50003 SET @SAVE_SQL_MODE=@@SQL_MODE*/;
|
|
|
|
DELIMITER ;;
|
|
/*!50003 SET SESSION SQL_MODE="STRICT_TRANS_TABLES,STRICT_ALL_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,TRADITIONAL,NO_AUTO_CREATE_USER" */;;
|
|
/*!50003 CREATE */ /*!50017 DEFINER=`root`@`%` */ /*!50003 TRIGGER `rental_date` BEFORE INSERT ON `rental` FOR EACH ROW SET NEW.rental_date = NOW() */;;
|
|
|
|
DELIMITER ;
|
|
/*!50003 SET SESSION SQL_MODE=@SAVE_SQL_MODE*/;
|
|
|
|
--
|
|
-- Temporary table structure for view `sales_by_film_category`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `sales_by_film_category`;
|
|
/*!50001 DROP VIEW IF EXISTS `sales_by_film_category`*/;
|
|
/*!50001 CREATE TABLE `sales_by_film_category` (
|
|
`category` varchar(25),
|
|
`total_sales` decimal(27,2)
|
|
) */;
|
|
|
|
--
|
|
-- Temporary table structure for view `sales_by_store`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `sales_by_store`;
|
|
/*!50001 DROP VIEW IF EXISTS `sales_by_store`*/;
|
|
/*!50001 CREATE TABLE `sales_by_store` (
|
|
`store` varchar(101),
|
|
`manager` varchar(91),
|
|
`total_sales` decimal(27,2)
|
|
) */;
|
|
|
|
--
|
|
-- Table structure for table `staff`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `staff`;
|
|
SET @saved_cs_client = @@character_set_client;
|
|
SET character_set_client = utf8;
|
|
CREATE TABLE `staff` (
|
|
`staff_id` tinyint(3) unsigned NOT NULL auto_increment,
|
|
`first_name` varchar(45) NOT NULL,
|
|
`last_name` varchar(45) NOT NULL,
|
|
`address_id` smallint(5) unsigned NOT NULL,
|
|
`picture` blob,
|
|
`email` varchar(50) default NULL,
|
|
`store_id` tinyint(3) unsigned NOT NULL,
|
|
`active` tinyint(1) NOT NULL default '1',
|
|
`username` varchar(16) NOT NULL,
|
|
`password` varchar(40) character set utf8 collate utf8_bin default NULL,
|
|
`last_update` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
|
|
PRIMARY KEY (`staff_id`),
|
|
KEY `idx_fk_store_id` (`store_id`),
|
|
KEY `idx_fk_address_id` (`address_id`),
|
|
CONSTRAINT `fk_staff_address` FOREIGN KEY (`address_id`) REFERENCES `address` (`address_id`) ON UPDATE CASCADE,
|
|
CONSTRAINT `fk_staff_store` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON UPDATE CASCADE
|
|
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
|
|
SET character_set_client = @saved_cs_client;
|
|
|
|
--
|
|
-- Temporary table structure for view `staff_list`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `staff_list`;
|
|
/*!50001 DROP VIEW IF EXISTS `staff_list`*/;
|
|
/*!50001 CREATE TABLE `staff_list` (
|
|
`ID` tinyint(3) unsigned,
|
|
`name` varchar(91),
|
|
`address` varchar(50),
|
|
`zip code` varchar(10),
|
|
`phone` varchar(20),
|
|
`city` varchar(50),
|
|
`country` varchar(50),
|
|
`SID` tinyint(3) unsigned
|
|
) */;
|
|
|
|
--
|
|
-- Table structure for table `store`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `store`;
|
|
SET @saved_cs_client = @@character_set_client;
|
|
SET character_set_client = utf8;
|
|
CREATE TABLE `store` (
|
|
`store_id` tinyint(3) unsigned NOT NULL auto_increment,
|
|
`manager_staff_id` tinyint(3) unsigned NOT NULL,
|
|
`address_id` smallint(5) unsigned NOT NULL,
|
|
`last_update` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
|
|
PRIMARY KEY (`store_id`),
|
|
UNIQUE KEY `idx_unique_manager` (`manager_staff_id`),
|
|
KEY `idx_fk_address_id` (`address_id`),
|
|
CONSTRAINT `fk_store_address` FOREIGN KEY (`address_id`) REFERENCES `address` (`address_id`) ON UPDATE CASCADE,
|
|
CONSTRAINT `fk_store_staff` FOREIGN KEY (`manager_staff_id`) REFERENCES `staff` (`staff_id`) ON UPDATE CASCADE
|
|
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
|
|
SET character_set_client = @saved_cs_client;
|
|
|
|
--
|
|
-- Current Database: `test`
|
|
--
|
|
|
|
CREATE DATABASE /*!32312 IF NOT EXISTS*/ `test` /*!40100 DEFAULT CHARACTER SET latin1 */;
|
|
|
|
USE `test`;
|
|
|
|
--
|
|
-- Table structure for table `friends`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `friends`;
|
|
SET @saved_cs_client = @@character_set_client;
|
|
SET character_set_client = utf8;
|
|
CREATE TABLE `friends` (
|
|
`name` varchar(10) default NULL,
|
|
`friend_of` varchar(10) default NULL
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
|
SET character_set_client = @saved_cs_client;
|
|
|
|
--
|
|
-- Table structure for table `isp_agg_9_2009_12`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `isp_agg_9_2009_12`;
|
|
SET @saved_cs_client = @@character_set_client;
|
|
SET character_set_client = utf8;
|
|
CREATE TABLE `isp_agg_9_2009_12` (
|
|
`uid` int(11) NOT NULL default '0',
|
|
`thedate` date NOT NULL default '0000-00-00',
|
|
`isp` bigint(20) NOT NULL default '0',
|
|
`hits200` int(11) NOT NULL default '0',
|
|
`hits206` int(11) NOT NULL default '0',
|
|
`hits304` int(11) NOT NULL default '0',
|
|
`hits403` int(11) NOT NULL default '0',
|
|
`gigs200` decimal(14,8) NOT NULL default '0.00000000',
|
|
`gigs206` decimal(14,8) NOT NULL default '0.00000000',
|
|
PRIMARY KEY (`uid`,`thedate`,`isp`),
|
|
KEY `gigs206` (`gigs206`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|
SET character_set_client = @saved_cs_client;
|
|
|
|
--
|
|
-- Table structure for table `people`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `people`;
|
|
SET @saved_cs_client = @@character_set_client;
|
|
SET character_set_client = utf8;
|
|
CREATE TABLE `people` (
|
|
`name` varchar(10) default NULL
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
|
SET character_set_client = @saved_cs_client;
|
|
|
|
--
|
|
-- Table structure for table `query_review`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `query_review`;
|
|
SET @saved_cs_client = @@character_set_client;
|
|
SET character_set_client = utf8;
|
|
CREATE TABLE `query_review` (
|
|
`checksum` bigint(20) unsigned NOT NULL,
|
|
`fingerprint` text NOT NULL,
|
|
`sample` text NOT NULL,
|
|
`first_seen` datetime default NULL,
|
|
`last_seen` datetime default NULL,
|
|
`reviewed_by` varchar(20) default NULL,
|
|
`reviewed_on` datetime default NULL,
|
|
`comments` varchar(100) default NULL,
|
|
PRIMARY KEY (`checksum`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
|
SET character_set_client = @saved_cs_client;
|
|
|
|
--
|
|
-- Table structure for table `stats_after`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `stats_after`;
|
|
SET @saved_cs_client = @@character_set_client;
|
|
SET character_set_client = utf8;
|
|
CREATE TABLE `stats_after` (
|
|
`table_schema` varchar(64) NOT NULL default '',
|
|
`table_name` varchar(64) NOT NULL default '',
|
|
`page_type` varchar(64) NOT NULL default '',
|
|
`num` int(11) default NULL,
|
|
PRIMARY KEY (`table_schema`,`table_name`,`page_type`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
|
SET character_set_client = @saved_cs_client;
|
|
|
|
--
|
|
-- Table structure for table `stats_as`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `stats_as`;
|
|
SET @saved_cs_client = @@character_set_client;
|
|
SET character_set_client = utf8;
|
|
CREATE TABLE `stats_as` (
|
|
`table_schema` varchar(64) NOT NULL default '',
|
|
`table_name` varchar(64) NOT NULL default '',
|
|
`page_type` varchar(64) NOT NULL default '',
|
|
`num` int(11) default NULL,
|
|
PRIMARY KEY (`table_schema`,`table_name`,`page_type`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
|
SET character_set_client = @saved_cs_client;
|
|
|
|
--
|
|
-- Table structure for table `stats_before`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `stats_before`;
|
|
SET @saved_cs_client = @@character_set_client;
|
|
SET character_set_client = utf8;
|
|
CREATE TABLE `stats_before` (
|
|
`table_schema` varchar(64) NOT NULL default '',
|
|
`table_name` varchar(64) NOT NULL default '',
|
|
`page_type` varchar(64) NOT NULL default '',
|
|
`num` int(11) default NULL,
|
|
PRIMARY KEY (`table_schema`,`table_name`,`page_type`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
|
SET character_set_client = @saved_cs_client;
|
|
|
|
--
|
|
-- Table structure for table `stats_bs`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `stats_bs`;
|
|
SET @saved_cs_client = @@character_set_client;
|
|
SET character_set_client = utf8;
|
|
CREATE TABLE `stats_bs` (
|
|
`table_schema` varchar(64) NOT NULL default '',
|
|
`table_name` varchar(64) NOT NULL default '',
|
|
`page_type` varchar(64) NOT NULL default '',
|
|
`num` int(11) default NULL,
|
|
PRIMARY KEY (`table_schema`,`table_name`,`page_type`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
|
SET character_set_client = @saved_cs_client;
|
|
|
|
--
|
|
-- Table structure for table `t`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `t`;
|
|
SET @saved_cs_client = @@character_set_client;
|
|
SET character_set_client = utf8;
|
|
CREATE TABLE `t` (
|
|
`id` varchar(32) NOT NULL default '',
|
|
`crc` int(10) unsigned NOT NULL,
|
|
PRIMARY KEY (`id`),
|
|
KEY `crc` (`crc`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
|
SET character_set_client = @saved_cs_client;
|
|
|
|
--
|
|
-- Current Database: `mysql`
|
|
--
|
|
|
|
USE `mysql`;
|
|
|
|
--
|
|
-- Current Database: `sakila`
|
|
--
|
|
|
|
USE `sakila`;
|
|
|
|
--
|
|
-- Final view structure for view `actor_info`
|
|
--
|
|
|
|
/*!50001 DROP TABLE `actor_info`*/;
|
|
/*!50001 DROP VIEW IF EXISTS `actor_info`*/;
|
|
/*!50001 CREATE ALGORITHM=UNDEFINED */
|
|
/*!50013 DEFINER=`root`@`%` SQL SECURITY INVOKER */
|
|
/*!50001 VIEW `actor_info` AS select `a`.`actor_id` AS `actor_id`,`a`.`first_name` AS `first_name`,`a`.`last_name` AS `last_name`,group_concat(distinct concat(`c`.`name`,_utf8': ',(select group_concat(`f`.`title` order by `f`.`title` ASC separator ', ') AS `GROUP_CONCAT(f.title ORDER BY f.title SEPARATOR ', ')` from ((`film` `f` join `film_category` `fc` on((`f`.`film_id` = `fc`.`film_id`))) join `film_actor` `fa` on((`f`.`film_id` = `fa`.`film_id`))) where ((`fc`.`category_id` = `c`.`category_id`) and (`fa`.`actor_id` = `a`.`actor_id`)))) order by `c`.`name` ASC separator '; ') AS `film_info` from (((`actor` `a` left join `film_actor` `fa` on((`a`.`actor_id` = `fa`.`actor_id`))) left join `film_category` `fc` on((`fa`.`film_id` = `fc`.`film_id`))) left join `category` `c` on((`fc`.`category_id` = `c`.`category_id`))) group by `a`.`actor_id`,`a`.`first_name`,`a`.`last_name` */;
|
|
|
|
--
|
|
-- Final view structure for view `customer_list`
|
|
--
|
|
|
|
/*!50001 DROP TABLE `customer_list`*/;
|
|
/*!50001 DROP VIEW IF EXISTS `customer_list`*/;
|
|
/*!50001 CREATE ALGORITHM=UNDEFINED */
|
|
/*!50013 DEFINER=`root`@`%` SQL SECURITY DEFINER */
|
|
/*!50001 VIEW `customer_list` AS select `cu`.`customer_id` AS `ID`,concat(`cu`.`first_name`,_utf8' ',`cu`.`last_name`) AS `name`,`a`.`address` AS `address`,`a`.`postal_code` AS `zip code`,`a`.`phone` AS `phone`,`city`.`city` AS `city`,`country`.`country` AS `country`,if(`cu`.`active`,_utf8'active',_utf8'') AS `notes`,`cu`.`store_id` AS `SID` from (((`customer` `cu` join `address` `a` on((`cu`.`address_id` = `a`.`address_id`))) join `city` on((`a`.`city_id` = `city`.`city_id`))) join `country` on((`city`.`country_id` = `country`.`country_id`))) */;
|
|
|
|
--
|
|
-- Final view structure for view `film_list`
|
|
--
|
|
|
|
/*!50001 DROP TABLE `film_list`*/;
|
|
/*!50001 DROP VIEW IF EXISTS `film_list`*/;
|
|
/*!50001 CREATE ALGORITHM=UNDEFINED */
|
|
/*!50013 DEFINER=`root`@`%` SQL SECURITY DEFINER */
|
|
/*!50001 VIEW `film_list` AS select `film`.`film_id` AS `FID`,`film`.`title` AS `title`,`film`.`description` AS `description`,`category`.`name` AS `category`,`film`.`rental_rate` AS `price`,`film`.`length` AS `length`,`film`.`rating` AS `rating`,group_concat(concat(`actor`.`first_name`,_utf8' ',`actor`.`last_name`) separator ', ') AS `actors` from ((((`category` left join `film_category` on((`category`.`category_id` = `film_category`.`category_id`))) left join `film` on((`film_category`.`film_id` = `film`.`film_id`))) join `film_actor` on((`film`.`film_id` = `film_actor`.`film_id`))) join `actor` on((`film_actor`.`actor_id` = `actor`.`actor_id`))) group by `film`.`film_id` */;
|
|
|
|
--
|
|
-- Final view structure for view `nicer_but_slower_film_list`
|
|
--
|
|
|
|
/*!50001 DROP TABLE `nicer_but_slower_film_list`*/;
|
|
/*!50001 DROP VIEW IF EXISTS `nicer_but_slower_film_list`*/;
|
|
/*!50001 CREATE ALGORITHM=UNDEFINED */
|
|
/*!50013 DEFINER=`root`@`%` SQL SECURITY DEFINER */
|
|
/*!50001 VIEW `nicer_but_slower_film_list` AS select `film`.`film_id` AS `FID`,`film`.`title` AS `title`,`film`.`description` AS `description`,`category`.`name` AS `category`,`film`.`rental_rate` AS `price`,`film`.`length` AS `length`,`film`.`rating` AS `rating`,group_concat(concat(concat(ucase(substr(`actor`.`first_name`,1,1)),lcase(substr(`actor`.`first_name`,2,length(`actor`.`first_name`))),_utf8' ',concat(ucase(substr(`actor`.`last_name`,1,1)),lcase(substr(`actor`.`last_name`,2,length(`actor`.`last_name`)))))) separator ', ') AS `actors` from ((((`category` left join `film_category` on((`category`.`category_id` = `film_category`.`category_id`))) left join `film` on((`film_category`.`film_id` = `film`.`film_id`))) join `film_actor` on((`film`.`film_id` = `film_actor`.`film_id`))) join `actor` on((`film_actor`.`actor_id` = `actor`.`actor_id`))) group by `film`.`film_id` */;
|
|
|
|
--
|
|
-- Final view structure for view `sales_by_film_category`
|
|
--
|
|
|
|
/*!50001 DROP TABLE `sales_by_film_category`*/;
|
|
/*!50001 DROP VIEW IF EXISTS `sales_by_film_category`*/;
|
|
/*!50001 CREATE ALGORITHM=UNDEFINED */
|
|
/*!50013 DEFINER=`root`@`%` SQL SECURITY DEFINER */
|
|
/*!50001 VIEW `sales_by_film_category` AS select `c`.`name` AS `category`,sum(`p`.`amount`) AS `total_sales` from (((((`payment` `p` join `rental` `r` on((`p`.`rental_id` = `r`.`rental_id`))) join `inventory` `i` on((`r`.`inventory_id` = `i`.`inventory_id`))) join `film` `f` on((`i`.`film_id` = `f`.`film_id`))) join `film_category` `fc` on((`f`.`film_id` = `fc`.`film_id`))) join `category` `c` on((`fc`.`category_id` = `c`.`category_id`))) group by `c`.`name` order by sum(`p`.`amount`) desc */;
|
|
|
|
--
|
|
-- Final view structure for view `sales_by_store`
|
|
--
|
|
|
|
/*!50001 DROP TABLE `sales_by_store`*/;
|
|
/*!50001 DROP VIEW IF EXISTS `sales_by_store`*/;
|
|
/*!50001 CREATE ALGORITHM=UNDEFINED */
|
|
/*!50013 DEFINER=`root`@`%` SQL SECURITY DEFINER */
|
|
/*!50001 VIEW `sales_by_store` AS select concat(`c`.`city`,_utf8',',`cy`.`country`) AS `store`,concat(`m`.`first_name`,_utf8' ',`m`.`last_name`) AS `manager`,sum(`p`.`amount`) AS `total_sales` from (((((((`payment` `p` join `rental` `r` on((`p`.`rental_id` = `r`.`rental_id`))) join `inventory` `i` on((`r`.`inventory_id` = `i`.`inventory_id`))) join `store` `s` on((`i`.`store_id` = `s`.`store_id`))) join `address` `a` on((`s`.`address_id` = `a`.`address_id`))) join `city` `c` on((`a`.`city_id` = `c`.`city_id`))) join `country` `cy` on((`c`.`country_id` = `cy`.`country_id`))) join `staff` `m` on((`s`.`manager_staff_id` = `m`.`staff_id`))) group by `s`.`store_id` order by `cy`.`country`,`c`.`city` */;
|
|
|
|
--
|
|
-- Final view structure for view `staff_list`
|
|
--
|
|
|
|
/*!50001 DROP TABLE `staff_list`*/;
|
|
/*!50001 DROP VIEW IF EXISTS `staff_list`*/;
|
|
/*!50001 CREATE ALGORITHM=UNDEFINED */
|
|
/*!50013 DEFINER=`root`@`%` SQL SECURITY DEFINER */
|
|
/*!50001 VIEW `staff_list` AS select `s`.`staff_id` AS `ID`,concat(`s`.`first_name`,_utf8' ',`s`.`last_name`) AS `name`,`a`.`address` AS `address`,`a`.`postal_code` AS `zip code`,`a`.`phone` AS `phone`,`city`.`city` AS `city`,`country`.`country` AS `country`,`s`.`store_id` AS `SID` from (((`staff` `s` join `address` `a` on((`s`.`address_id` = `a`.`address_id`))) join `city` on((`a`.`city_id` = `city`.`city_id`))) join `country` on((`city`.`country_id` = `country`.`country_id`))) */;
|
|
|
|
--
|
|
-- Current Database: `test`
|
|
--
|
|
|
|
USE `test`;
|
|
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
|
|
|
|
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
|
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
|
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
|
|
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
|
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
|
|
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
|
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
|
|
|
-- Dump completed on 2009-02-21 23:44:14
|