1. skip-name-resolve skip-locking skip-innodb skip-bdb key_buffer = (1G内存推荐设置为256M,2G内存推荐设置为512M) wait_timeout = 3或者5 (2G内存推荐设置为5) max_connections = (如果访问量很大可以设置为512-1024,否则可以设置为384) memory_limit =     (程序最多允许使用内存量, 2G内存建议设置为128M) post ...

    阅读全文
  2. net stop mysql 注:停止mysql服务 net start mysql 注:启动mysql服务 mysql -u用户名 -p用户密码 注:登陆本机的mysql mysql -u用户名 -p用户密码 -h机器IP 注:登陆指定主机的mysql grant 权限 on 数据库.* to 用户名@登录主机 identified by "密码" grant select,insert,update,delete on *.* to user1@ ...

    阅读全文
  3. MySQL修改prompt时可以使用到的特殊符号:  Option Description \c A counter that increments for each statement you issue \D The full current date \d The default database \h ...

    阅读全文
  4. 使用select ... into outfile 'filename' 可以把数据库中表或视图中的数据按某种格式导出到文件中。 使用load data infile 'filename' into table tble_name这是把文件中的数据导入到数据库的表中。 在使用load data infile 'filename' into table时遇到了下面的错误: 例: load data infile " ...

    阅读全文
  5. MySQL 字符集引起的Error 1366错误。 错误提示: ERROR 1366 (HY000): Incorrect string value: '\xE5\xB9\xB3\xE5\xAE\x89...' for column 'name' at row 1 解决步骤: 1. 查看通过命令“show variables like "%character%; ” 数据库字符集 mysql> ...

    阅读全文
  6. MySQL有多种存储引擎,MyISAM和InnoDB是其中常用的两种。这里介绍关于这两种引擎的一些基本概念(非深入介绍)。 MyISAM是MySQL的默认存储引擎,基于传统的ISAM类型,支持全文搜索,但不是事务安全的,而且不支持外键。每张MyISAM表存放在三个文件中:frm 文件存放表格定义;数据文件是MYD (MYData);索引文件是MYI (MYIndex)。 ISAM是Indexed Sequential Access Method (有索引的 顺序访问方法) ...

    阅读全文
  7. 官网摘要: http://dev.mysql.com/doc/refman/5.6/en/fulltext-search.html MySQL has support for full-text indexing and searching: A full-text index in MySQL is an index of type FULLTEXT. Full-text indexes can be used only with  ...

    阅读全文
  8. MySQLFull-Text Search功能学习摘要 全文搜索三种模式: 自然语言模式(Natural Language Full-Text Searches) 布尔模式(Boolean Full-Text Searches) 查询扩展模式(Full-Text Searches with Query Expansion) 使用全文搜索方法: #创建表格 CREATE TABLE FT_Supportable_Table (name ...

    阅读全文
  9. mysql 导出来的dump里有一些注解代码: /*!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 ...

    阅读全文
  10. 使用load infile导入csv文件出现 ERROR 1366 (HY000):Incorrect string value: '\xBE\xAB\xC6\xB7' for column TYPE 百度网上解析: TYPE字段不能输入汉字,你输入了汉字 这是因为的你创建的表编码存在问题 可以尝试将每一个用到中文的字段charset改成uft8 collation改成utf8_unicode_ci ...

    阅读全文
1234