MySql
tfhui928
这个作者很懒,什么都没留下…
展开
-
MySql创建函数
一、查看创建函数的功能是否开启:<br />mysql> show variables like '%func%';<br />+-----------------------------------------+-------+<br />| Variable_name | Value |<br />+-----------------------------------------+-------+<br />| log_bin_trust_func原创 2010-12-06 13:58:00 · 7878 阅读 · 0 评论 -
Binlog has bad magic number; It's not a binary log file that can be used by this version of MySQL
Binlog has bad magic number; It's not a binary log file that can be used by this version of MySQL140701 10:50:25 [ERROR] Can't init tc log原创 2014-07-01 11:00:31 · 4293 阅读 · 0 评论 -
MYSQL数据库主从,出库报错Last_IO_Error: error reconnecting to master 'cpc@10.10.8.70:330 ' - retry-time: 10 r
mysql> show slave status\G;*************************** 1. row *************************** Slave_IO_State: Reconnecting after a failed master event read Master_Host原创 2014-07-01 11:21:17 · 4805 阅读 · 0 评论 -
ERROR 2006 (HY000): MySQL server has gone away
mysql> show slave status\G;ERROR 2006 (HY000): MySQL server has gone awayNo connection. Trying to reconnect...Connection id: 3Current database: *** NONE ***原创 2014-07-01 11:32:17 · 1894 阅读 · 0 评论 -
mysql字段varchar长度分配对性能的影响
使用varchar(5)和varchar(200)存储‘hello’的空间开销是一样的,那么转载 2014-06-12 17:22:07 · 13025 阅读 · 1 评论 -
show slave status\G 详解
show slave status\G: Slave_IO_StateSHOW PROCESSLIST输出的State字段的拷贝。SHOW PROCESSLIST用于从属I/O线程。如果线程正在试图连接到主服务器,正在等待来自主服务器的时间或正在连接到主服务器等,本语句会通知您 Master_User被用于连接主服务器的当前用户。Master_Port转载 2014-07-04 11:29:36 · 4345 阅读 · 0 评论 -
如何查看Mysql event事件是否启用
查看mysql事件状态是否开启mysql> show variables like '%event%';+-----------------+-------+| Variable_name | Value |+-----------------+-------+| event_scheduler | ON |+-----------------+-------+原创 2014-07-25 16:51:31 · 11450 阅读 · 0 评论 -
mysql错误:Table XXX is marked as crashed and should be repaired
mysql错误:Table XXX is marked as crashed and should be repaired 执行下面语句repair table 表名;例如:repair table terminal_gis;原创 2012-08-17 20:48:41 · 1315 阅读 · 0 评论 -
查看mysql数据库存在哪些事件
mysql> use cpc;Database changedmysql> show events\G;*************************** 1. row *************************** Db: cpc Name: DATA_TO_state_count原创 2014-07-25 16:51:44 · 2166 阅读 · 0 评论 -
MySQL Unknown table engine 'FEDERATED''
Last_SQL_Error: Error 'Unknown table engine 'FEDERATED'' on query. Default database: 'repeater'. Query: 'update users set PWD='123', NAME='鏃ョ収', SEX=1, EMAIL='rizhao@qq.com', BIRTHDAY='2010-06-23',原创 2014-07-08 16:28:06 · 2608 阅读 · 1 评论 -
Windows系统下MySQL数据库出现Access denied for user 'root'@'localhost' (using password:YES) 错误
1、2、原创 2014-07-07 17:28:53 · 5125 阅读 · 0 评论 -
mysql: Last_IO_Errno错误代码说明
Last_SQL_Errno 错误代码说明: 1005:创建表失败1006:创建数据库失败1007:数据库已存在,创建数据库失败1008:数据库不存在,删除数据库失败1009:不能删除数据库文件导致删除数据库失败1010:不能删除数据目录导致删除数据库失败1011:删除数据库文件失败1012:不能读取系统表中的记录1020:记录已被其他用户修改1原创 2014-07-14 10:30:27 · 5206 阅读 · 0 评论 -
mysql查看是否支持分区以及查看具体某一表的详细分区信息情况
mysql> show variables like '%partition%';+-------------------+-------+| Variable_name | Value |+-------------------+-------+| have_partitioning | YES |+-------------------+-------+1原创 2014-07-31 16:12:56 · 4242 阅读 · 0 评论 -
MySQL只导出数据库结构和存储过程、触发器、函数,但不导表数据
例如:mysqldump -ucpc -p123 -h172.16.1.111 -P3306 -d --triggers -R cpc >d:\cpc20140905.sql原创 2014-09-05 10:59:59 · 4187 阅读 · 0 评论 -
mysql在windows server2003服务器上启动报错1067且[ERROR] listen() on TCP/IP failed with error
mysql在windows server2003服务器上启动报错1067C:\Documents and Settings\Administrator>net start mysqlmysql 服务正在启动 ...mysql 服务无法启动。系统出错。发生系统错误 1067。进程意外终止。mysql目录data文件夹下查看后缀名为.err文件的错误信息。原创 2014-03-14 13:54:51 · 2358 阅读 · 0 评论 -
删除mysql 重复数据
delete t1 as t1 from terminal_alarm_list as t1,(select distinct min(alarm_id) as alarm_id,terminal_id,type_id from terminal_alarm_list where type_id=41 and isok=1 group by terminal_id having co原创 2013-10-12 10:53:14 · 721 阅读 · 0 评论 -
InnoDB: Database page corruption on disk or a failed
InnoDB: Database page corruption on disk or a failedInnoDB: file read of page 5234.InnoDB: You may have to recover from a backup.文件损坏mysql的参数innodb_force_recovery可以在启动时忽略一些检查项,于是在配置文件中设置innodb原创 2013-07-15 11:18:52 · 4605 阅读 · 0 评论 -
mysql 查询某个字段有重复记录,并显示出具体的记录信息
1、 查询某个字段有重复记录的记录如:查询设备表terminal中phone字段有重复记录的sqlselect phone from terminal group by phone having count(0)>1;2、显示出重复信息的记录select * from terminal where phone in( select phone from terminal wher原创 2011-06-16 10:15:00 · 1397 阅读 · 0 评论 -
innodb_flush_log_at_trx_commit 大大提高导入速度
http://blog.sina.com.cn/s/blog_5017ea6c0100zc3x.html innodb_buffer_pool_size如果用Innodb,那么这是一个重要变量。相对于MyISAM来说,Innodb对于buffer size更敏感。MySIAM可能对于大数据量使用默认的key_buffer_size也还好,但Innodb在大数据量时用默认值就感觉在爬了。转载 2012-07-08 08:55:52 · 954 阅读 · 0 评论 -
java调用mysql存储过程报权限方面错误
在java中通过JDBC连接MySQL执行存储过程时报错: java.sql.SQLException: User does not have access to metadata required to determine stored procedure parameter types. If rights can not be granted, configure connecti原创 2012-07-12 16:17:34 · 1859 阅读 · 0 评论 -
mysql授权
mysql授权:grant all privileges on *.* to 'remote'@'192.168.1.254' identified by 'password';remote表示用户名.'192.168.1.254' 远程ip地址或用%代替,表示所有主机可以远程登录password表示远程登陆密码. 远程授权,%代表所有原创 2012-11-21 11:19:20 · 583 阅读 · 0 评论 -
mysql只导出触发器和导入触发器
导出mysqldump -uroot -p123 --opt -t -d cpc>/cpc.sql 导入mysql -uroot -p123 cpc原创 2012-09-24 18:06:22 · 6144 阅读 · 1 评论 -
mysql 导入导出数据库以及函数、存储过程
1.mysql导出整个数据库 C:\>mysqldump -uroot -p123 cpc>d:\cpcbak20120706.sql 2.mysql导出数据库一个表 C:\>mysqldump -hlocalhost -uroot hqgr t_ug_user> user.sql 3、导出数据库结构 C:\>mysqldump -uroot -原创 2012-07-09 14:21:15 · 3285 阅读 · 0 评论 -
mysql 数据库程序出现Table xxx is marked as crashed and should be repaired
Table "表名" is marked as crashed and should be repaired Caused by: java.sql.SQLException: Table '表名' is marked as crashed and should be repaired 原因是表的索引文件发生错误,当时直接重启服务器的时候刚好还有程序正往表里面添加数据。window原创 2012-07-09 09:48:42 · 1082 阅读 · 0 评论 -
mysql Table "表名" is marked as crashed and should be repaired
Table "表名" is marked as crashed and should be repaired Caused by: java.sql.SQLException: Table '表名' is marked as crashed and should be repaired 原因是表的索引文件发生错误,当时直接重启服务器的时候刚好还有程序正往表里面添加数据。window原创 2012-07-09 09:49:19 · 1376 阅读 · 0 评论 -
mysql导数据库表结构存储过程事件
导出:mysqldump -uroot -p123 -d -R -E 数据库名称>d:\cpc.sql;-d 不导出数据-R 存储过程-E 事件 导入:mysql -uroot -p123 cpd原创 2012-12-25 16:43:26 · 828 阅读 · 0 评论 -
mysql文件data下文件的含义
data文件夹下面的一些文件:ib_logfile0、ib_logfile1和ibdata1。先对这几个文件作简要介绍。 ib_logfile0和ib_logfile1是关于数据库的一些日志文件; .frm文件是数据库中很多的表的结构描述文件; ibdata1文件时数据库的真实数据存放文件。原创 2012-12-26 14:07:28 · 1199 阅读 · 0 评论 -
查看mysql分区表具体情况
查看某一个分区表的分区信息:例如:执行SELECT * FROM information_schema.PARTITIONS WHERE table_name='round_down';round_down 表名。显示结果:原创 2013-05-31 10:58:40 · 1093 阅读 · 0 评论 -
MySQL导出多个表数据且insert语句带上字段,不要创建表结构语句
例如:mysqldump -uroot -p123 -t -c cpc alert_clew alert_type area area_center terminal terminal_addtion>D:\cpc_no_create_table.sql原创 2014-09-05 11:30:38 · 6649 阅读 · 1 评论