表示 进入内容 6011 去 6020 的 7162 « 先前的 10 新的记录 | 下一步 10 较早的记录 » Displaying posts with tag: 数据库 (reset) Aug 21 2016 mysql性能优化学习笔记-参数介绍及优化建议 Posted by mysql-云栖社区 on Sun 21 Aug 2016 08:23 UTC Tags: innodb, cache, log, binlog, session, MySQL, 数据库, 日志, 配置, 服务器, 性能, 性能优化, 磁盘, 表空间, 分区表 MySQL服务器参数介绍 mysql参数介绍(客户端中执行),尽量只修改session级别的参数。 全局参数(新连接的session才会生效,原有已经连接的session不生效) set global 参数名=参数值; set @@global. 【性能优化】 【服务器】 【mysql】 【innodb】 【性能】 【日志】 【LOG】 …[获取更多] Aug 19 2016 屌炸天实战 MySQL 系列教程(二) 史上最屌、你不知道的数据库操作 Posted by mysql-云栖社区 on Fri 19 Aug 2016 15:46 UTC Tags: index, varchar, MySQL, 数据库, 索引, create, 数据类型 此篇写MySQL中最基础,也是最重要的操作! 第一篇:屌炸天实战 MySQL 系列教程(一) 生产标准线上环境安装配置案例及棘手问题解决 第二篇:屌炸天实战 MySQL 系列教程(二) 史上最屌、你不知道的数据库操作 本章内容: 查看\创建\使用\删除 数据库 用户管理及授权实战... 【mysql】 【数据库】 【索引】 【index】 【Create】 …[获取更多] Aug 18 2016 mysql性能优化学习笔记 Posted by mysql-云栖社区 on Thu 18 Aug 2016 13:02 UTC Tags: cpu, core, MySQL, 数据库, 服务器, 性能, 操作系统, 性能优化, 存储, 镜像, 磁盘 mysql性能优化 硬件对数据库的影响 CPU资源和可用内存大小 服务器硬件对mysql性能的影响 我们的应用是CPU密集型? 我们的应用的并发量如何? 数量比频率更好 64位使用32位的服务器版本 32位不能使用超过4G的内容,因此选择的时候需要注意。 【性能优化】 【服务器】 【mysql】 【性能】 【数据库】 【镜像】 …[获取更多] Aug 17 2016 【DBAplus社群】MySQL进阶路:从小工到专家的必读书籍和必备工具 Posted by mysql-云栖社区 on Wed 17 Aug 2016 12:05 UTC Tags: code, sql, github, MySQL, 数据库, 存储过程, 数据库开发, 性能测试, 性能监控, 版本管理 原创 2016-08-17 卢钧轶 作者介绍 卢钧轶,DBAplus社群原创专家,目前就职于Facebook MySQL Infra Team,主要负责大规模MySQL数据库运维。 【mysql】 【SQL】 【数据库】 【性能监控】 【code】 【版本管理】 【数据库开发】 …[获取更多] Aug 17 2016 Mysql软删除 Posted by mysql-云栖社区 on Wed 17 Aug 2016 09:03 UTC Tags: MySQL, 数据库 所谓软删除(Soft Deleting),即在删除数据表中的数据时,并不直接将其从数据表中删除,而是将其标志为删除,即在每张表中设置一个删除字段(如:IsDeleted)等,默认情况下其值为0,及未删除状态;当需要将数据删除时,则将此字段更新为1。 【mysql】 【数据库】 点击查看原文> Aug 17 2016 Mysql 视图笔记2 Posted by mysql-云栖社区 on Wed 17 Aug 2016 09:02 UTC Tags: Java, sql, update, view, MySQL, 数据库, create 这学期开了数据库的课,对sql注入颇感兴趣。因此,对数据库语句也颇为喜爱。遇到了with check option 问题。这属于sql view里面的一个问题。 【java】 【mysql】 【SQL】 【数据库】 【Create】 【update】 【view】 点击查看原文> Aug 17 2016 mysql 触发器 Posted by mysql-云栖社区 on Wed 17 Aug 2016 09:02 UTC Tags: update, varchar, MySQL, 数据库, create, 测试, 存储过程 一,什么触发器 1,个人理解触发器,从字面来理解,一触即发的一个器,简称触发器(哈哈,个人理解),举个例子吧,好比天黑了,你开灯了,你看到东西了。 【mysql】 【数据库】 【测试】 【Create】 【update】 【存储过程】 【varchar】 …[获取更多] Aug 17 2016 Redmine 数据库连接错误 Posted by mysql-云栖社区 on Wed 17 Aug 2016 01:07 UTC Tags: ruby, rails, server, Class, MySQL, REQUIRE, 数据库 /******************************************************************** * Redmine 数据库连接错误 * 说明: * OpenMediaVault上的Redmine出现连接错误,目前不知道是我自己不小心 * 把mysql的密码修改了,还是因为被攻击了,先记录一下。 【mysql】 【require】 【数据库】 【Server】 【ruby】 【class】 【Rails】 …[获取更多] Aug 16 2016 mysql Event、存储过程、表命令 Posted by mysql-云栖社区 on Tue 16 Aug 2016 12:41 UTC Tags: Java, sql, view, test, MySQL, 数据库, create, 存储过程, 服务器, 线程 Mysql事件调度器(Event Scheduler)类似于定时器,可以在某一个时间点执行一个SQL语句或一个语句块(BEGIN ... END);或者每隔固定间隔重复执行。类似于Linux下的crontab,或Windows下的Task Scheduler。 【java】 【服务器】 【mysql】 【SQL】 【线程】 【数据库】 【test】 …[获取更多] Aug 16 2016 mybatis批量update(mysql) Posted by mysql-云栖社区 on Tue 16 Aug 2016 02:53 UTC Tags: update, index, http, string, mybatis, MySQL, 数据库, create 批量插入: insert into testTable (id,content) values ( #{item.id}, #{item. 【mysql】 【http】 【数据库】 【string】 【index】 【Create】 【update】 【mybatis】 点击查看原文> …[获取更多] 表示 进入内容 6011 去 6020 的 7162 « 先前的 10 新的记录 | 下一步 10 较早的记录 » Oracle MySQL Blogs Oracle's MySQL Blog (43) MySQL 其他链接 MySQL Downloads MySQL Docs MySQL Bugs MySQL Forums