摘要: 案例如下: 在使用Show innodb status检查引擎状态时,发现了死锁问题: *** (1) TRANSACTION: TRANSACTION 0 677833455, ACTIVE 0 sec, process no 11393, OS thread id 278546 starting index read mysql tables in use 1, locked 1 L... 阅读全文
posted @ 2010-06-09 16:50 瑞尼书苑 阅读(542) 评论(0) 推荐(0)
摘要: 导入数据库 mysql>use databasename; mysql>source sqlFilePath/**.sql; 导出数据库 mysqldump -u userName -p password -h IP databaseName>sqlFilePath/*.sql 导出一个表 mysqldump -u 用户名 -p 数据库名 表名> 导出的文件名 阅读全文
posted @ 2010-06-09 16:21 瑞尼书苑 阅读(186) 评论(0) 推荐(0)