MySQL 示例数据库sakila-db的安装

最近在看 “高性能MySql”这本神书,发现上面很多例子采用的官方示例数据库sakila。

官方示例数据库

下载地址

http://dev.mysql.com/doc/index-other.html

Documenation - Other Docs - Example Databases 示例库和文档放到了一起  跳转到下载界面。

解压导入sakila数据库

上传文件到任意路径下

[[email protected] etc]# ll
总用量 756
-rw-r--r-- 1 root   root   741613 7月   6 17:53 sakila-db.zip

  

解压文件

 

[[email protected] etc]# unzip sakila-db.zip
Archive:  sakila-db.zip
   creating: sakila-db/
  inflating: sakila-db/sakila-data.sql
  inflating: sakila-db/sakila-schema.sql
  inflating: sakila-db/sakila.mwb

  

解压后,可以看见有如下文件

[[email protected] sakila-db]# ll
总用量 3396
-rw-r--r-- 1 root root 3398148 7月  21 2016 sakila-data.sql
-rw-r--r-- 1 root root   50019 7月  21 2016 sakila.mwb
-rw-r--r-- 1 root root   23424 7月  21 2016 sakila-schema.sql

  

导入sql文件

[[email protected] sakila-db]#  mysql -uroot -p <sakila-schema.sql
Enter password:
[[email protected] sakila-db]# mysql -uroot -p <sakila-data.sql
Enter password:
[[email protected] sakila-db]#

 检查导入的数据是否成功(两种检测方法任选一种就可以)

[[email protected]t sakila-db]# mysql
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 30659
Server version: 5.6.36-log Source distribution

Copyright (c) 2000, 2017, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type ‘help;‘ or ‘\h‘ for help. Type ‘\c‘ to clear the current input statement.

mysql>
mysql>
mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| jfedu              |
| mysql              |
| performance_schema |
| sakila             |
| test               |
| zabbix             |
+--------------------+
7 rows in set (0.01 sec)

mysql> use sakila
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Database changed
mysql> show tables;
+----------------------------+
| Tables_in_sakila           |
+----------------------------+
| actor                      |
| actor_info                 |
| address                    |
| category                   |
| city                       |
| country                    |
| customer                   |
| customer_list              |
| film                       |
| film_actor                 |
| film_category              |
| film_list                  |
| film_text                  |
| inventory                  |
| language                   |
| nicer_but_slower_film_list |
| payment                    |
| rental                     |
| sales_by_film_category     |
| sales_by_store             |
| staff                      |
| staff_list                 |
| store                      |
+----------------------------+
23 rows in set (0.00 sec)

mysql>

  示例数据库导入完成

时间: 2024-11-16 00:14:58

MySQL 示例数据库sakila-db的安装的相关文章

安装MySQL样本数据库Sakila

通常情况下对于一个全新的MySQL服务器,没有任何数据供我们测试和使用.对此,MySQL为我们提供了一些样本数据库,我们可以基于这些数据库作基本的操作以及压力测试等等.本文描述的是安装sakila数据库.该数据库需要安装在MySQL 5.0以上的版本.以下是其描述. 1.下载种子数据库下载位置:http://dev.mysql.com/doc/index-other.html 2.安装种子数据库sakila[[email protected] ~]# unzip sakila-db.zipArc

Mysql示例数据库

官方提供了多个示例数据库: 下载地址: https://dev.mysql.com/doc/index-other.html github示例数据库: 下载地址:https://github.com/ivanceras/sakila 原文地址:https://blog.51cto.com/hunt1574/2473774

使用EntityFramework6连接MySql数据库(db first方式)

查看了 逆水寒龙前辈的 使用EntityFramework6连接MySql数据库(db first方式) 自己亲自实践 遇到一点问 mysql-connector-net-x.x.x.msi mysql-for-visualstudio-x.x.x.msi 这两个东西需要使用最新版本,老版本装不上. 安装nuget包 不需要带版本号 Install-Package EntityFramework Install-Package MySql.Data.Entity 带版本号也会出现这个错误 提醒一

菜鸟崛起 DB Chapter 2 MySQL 5.6的概述与安装

在上文菜鸟崛起 DB Chapter 1 数据库概述我们初步认识了数据库,也知道市面上常见的几种数据库,下面我们就针对常见的MySQL数据库展开对DataBase的探讨. 2.1  MySQL介绍 MySQL是一个关系型数据库管理系统,由瑞典MySQL AB 公司开发,目前属于 Oracle 旗下产品.MySQL 是最流行的关系型数据库管理系统之一,在 WEB 应用方面,MySQL是最好的 RDBMS (Relational Database Management System,关系数据库管理系

Python全栈 MySQL 数据库 (简述 、安装、基本命令)

ParisGabriel 每天坚持手写  一天一篇  决定坚持几年 为了梦想为了信仰  开局一张图 一个月的python已经结束了  下面就是数据库了   先说MySQL 这个数据库应该差不多是用户量最多的了 MySQL概述:1.什么是数据库: 存储数据的厂库2.有哪些公司在用数据库 金融机构.游戏网站.购物网站.论坛网站...3.提供数据库服务的软件: 1.软件的分类: MySQL.Oracle.SQL_Server.DB2.MongoDB.MariaDB 2.生产环境中,如何选择使用哪些数据

MySQL数据库之简介和安装

一.基础部分 1.数据库是简介     之前所学,数据要永久保存,比如用户注册的用户信息,都是保存于文件中,而文件只能存在于某一台机器上. 如果我们不考虑从文件中读取数据的效率问题,并且假设我们的程序所有的组件都运行在一台机器上,那么用文件存取数据,并没有问题 但需要考虑的问题是:程序的执行效率依赖于承载它的硬件,而一台机器机器的性能总归是有限的,受限于目前的硬件水平,垂直扩展是有极限的.于是我们只能通过水平扩展来增强我们系统的整体性能,这就需要我们将程序的各个组件分布于多台机器去执行. 需要注

MySQL 官方样板数据库sakila

Sakila示例数据库最初由MySQL AB文档团队的前成员Mike Hillyer开发,旨在提供可用于书籍,教程,文章,样本等示例的标准模式. Sakila示例数据库还用于突出MySQL的最新功能,如视图,存储过程和触发器. Sakila示例数据库旨在替代Oracle提供的world样本数据库,我的数据库中两个都有. world样本数据库提供了一组表格,其中包含有关世界各国和城市的信息,对基本查询很有用,但缺乏测试MySQL特定功能和MySQL 5中的新功能的结构. Sakila样本数据库的开

MYSQL之数据库初识、安装详解、sql语句基本操作

目录 MYSQL之数据库初识及安装详解 1.什么是数据库? 1.什么是数据?(data) 2.什么是数据库?(databases,简称DB) 2.为什要用数据库? 3.什么是数据库管理系统?(DataBase Management System 简称DBMS) 4.数据库管理软件的分类 5.MYSQL数据库 6.数据库服务器.数据管理系统.数据库.表记录之间的关系 MYSQL的安装 下载及启动 配置环境变量及作系统服务 修改密码 破解密码 配置文件 数据库的基本操作 MYSQL之数据库初识及安装

mysql优化之sakila测试数据库

下载地址,选择相应的版本来进行安装测试 http://dev.mysql.com/doc/index-other.html 相关说明 http://dev.mysql.com/doc/sakila/en/sakila-installation.html outous-MacBook-Pro:~ wangtao$ mysql -uroot -p Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your