Canyon

环境:

Centos7 Minimal

MySQL8.0

 

官网地址:

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

 

相关软件下载

yum install -y wget unzip

以Employees库为例,下载

wget https://codeload.github.com/datacharmer/test_db/zip/master -O master.zip

解压

unzip master.zip 

导入Employees数据库

mysql -uroot -p < /root/test_db-master/employees.sql

验证数据完整性

time mysql -uroot -p -t < /root/test_db-master/test_employees_sha.sql
time mysql -uroot -p -t < /root/test_db-master/test_employees_md5.sql

 

分类:

技术点:

相关文章:

  • 2021-12-14
  • 2021-06-25
  • 2021-12-19
  • 2018-11-13
  • 2021-11-12
  • 2021-04-30
  • 2021-11-28
  • 2021-09-17
猜你喜欢
  • 2021-10-16
  • 2021-10-03
  • 2021-08-14
  • 2021-08-05
  • 2021-06-18
  • 2021-09-04
相关资源
相似解决方案