标签:
mysql下载:32位系统下载
安装过程(以64位平台为例)
select user,host,password from mysql.user;
该命令可以查看当前MySQL中存在的帐号.host列的百分号(%),代表该MySQL数据库可以从任意地方连接.
尝试用本地IP地址连接MySQL.(ip地址查看命令:ipconfig,看输出的"以太网适配器""IPv4地址部分")
示例数据库下载地址http://examples.oreilly.com/9780596007270/
实体模型信息http://en.wikipedia.org/wiki/Entity-relationship_model
CREATE DATABASE IF NOT EXISTS bank;
USE bank;
SOURCE C:\Program Files\MySQL\MySQL Server 5.5\LearningSQLExample.sql;
或者
mysql -uroot -p bank < "C:\Program Files\MySQL\MySQL Server 5.5\LearningSQLExample.sql"
SHOW TABLES;
表名 | 定义 |
---|---|
account | 为特定顾客开放的特定产品 |
branch | 开展银行交易的场所 |
business | 公司顾客(customer表的子类型) |
customer | 与银行业务来往的个人或公司 |
department | 执行特定银行职能的雇员分组 |
employee | 银行的工作人员 |
individual | 个人顾客(customer表的子类型) |
officer | 允许为公司顾客发起商务交易的人 |
product | 向顾客提供的银行服务 |
product_type | 具备相似功能的产品的分组 |
transaction | 改变账户余额的操作 |
导入数据,参考Windows部分.
安装过程省略,参照编译/二进制/rpm安装文档
参考http://www.percona.com/doc/percona-server/5.5/installation/apt_repo.html
注意
官网http://keepass.info/
2.21版下载地址http://downloads.sourceforge.net/keepass/KeePass-2.21-Setup.exe
生成随机密码
在my.cnf配置文件的mysql部分中增加
prompt=\\R:\\m:\\s\_\h:\p\_\\d>
(默认)mysql>
(修改后)10:11:36 127.0.0.1:3306 (none)>
heidisql
官网地址http://www.heidisql.com/
mysql> drop database if exists bank;
ERROR 1010 (HY000): Error dropping database (can‘t rmdir ‘.\bank\‘, errno: 17)
解决办法:进入C:\Program Files\MySQL\MySQL Server 5.5\data\bank目录,查看是否有其他非数据库的文件.有的话,清除.
标签:
原文地址:http://www.cnblogs.com/jeff-wgc/p/4520742.html