发布时间:2015-01-16 14:57:09
http://blog.csdn.net/moxiaomomo/article/details/17092871 MySQL数据库及表(仅MyISAM)支持符号链接(symbolic link),即数据库或表可以存储在my.cnf中指定datadir之外的分区或目录。要支持符号链接,需要在配置中设置symbolic-links=1(较新的版本为默认开启)datadir=/data1/mysql/data/ dir.........【阅读全文】
发布时间:2015-01-08 11:36:56
mysql> create table test1(id int unsigned not null,first_name varchar(30) not null,last_name varchar(30) not null,joined date not null,primary key(id),index(id));Query OK, 0 rows affected (0.02 sec)mysql> show create table test1;+-------+----------------------------------------------------------.........【阅读全文】