码迷,mamicode.com
首页 >  
搜索关键字:redo    ( 937个结果
Memory Architecture-SGA-Database Buffer Cache
启动instance:1、分配内存空间SGA2、启动后台进程内存结构:1、SGA 2、PGA 3、UGA 4、Software code areasSGA components:1、Database Buffer Cache 2、Redo Log Buffer 3、Shar...
分类:数据库   时间:2015-05-06 12:41:53    阅读次数:248
innodb_fast_shutdown中值为1或者2的区别是?
innodb_fast_shutdown=0 , 1 , 2时的意思分别是0把buffer pool中的脏页刷到磁盘和合并insert buffer,当然包括redo log也会写到磁盘中。2只把redo log刷到磁盘中,然后关闭1关于1,它解释说,是先暂时略过一些flush操作,但没有具体说忽略...
分类:数据库   时间:2015-04-29 00:34:24    阅读次数:252
zz MySQL redo log及recover过程浅析
原作地址:http://www.cnblogs.com/liuhao/p/3714012.html写在前面:作者水平有限,欢迎不吝赐教,一切以最新源码为准。InnoDB redo log首先介绍下Innodb redo log是什么,为什么需要记录redo log,以及redo log的作用都有哪些...
分类:数据库   时间:2015-04-24 20:50:27    阅读次数:252
MYSQL组提交
组提交(group commit)是MYSQL处理日志的一种优化方式,主要为了解决写日志时频繁刷磁盘的问题。组提交伴随着MYSQL的发展不断优化,从最初只支持redo log 组提交,到目前5.6官方版本同时支持redo log 和binlog组提交。组提交的实现大大提高了mysql的事务处理性.....
分类:数据库   时间:2015-04-19 16:02:47    阅读次数:210
QtGui.QLineEdit
AQtGui.QLineEditis a widget that allows to enter and edit a single line of plain text. There are undo and redo, cut and paste, and drag & drop functio...
分类:其他好文   时间:2015-04-17 21:52:50    阅读次数:180
控制结构
一、条件判断if - elsif - else二、循环whileutilforforeachdo - whiledo - utilgoto,last, next, redo三、单行条件语法为statement keyword condexpr。其中keyword可为if、unless、while或u...
分类:其他好文   时间:2015-04-13 01:40:47    阅读次数:122
Oracle 附件日志的作用
为什么GOLDENGATE使用时,一定要开启附加日志? 大家想,如果我在源端做UPDATE时,目标端怎么知道我修改的是哪行数据呢!那我们用什么来标识我们修改的这行数据?ROWID?明显不行哈~~ 用主键呗~~但是主键又不存在于我们的REDO LOG中,那么就需要将主键作为附加信息添加到RED...
分类:数据库   时间:2015-04-11 16:14:28    阅读次数:224
oracle redo日志维护
环境OS:Red Hat Linux As 5DB:10.2.0.11.添加日志组 alter database add logfile group 4 ('/u01/app/oracle/oradata/oracl/redo04.log') size 50m; 2.添加日志组(指定日志已经存在) ...
分类:数据库   时间:2015-04-08 21:30:41    阅读次数:210
Oracle delete input与delete all input
oracle官方文档提示:If you had specified DELETE INPUT rather than DELETE ALL INPUT, then RMAN would have only deleted the specific archived redo log files th...
分类:数据库   时间:2015-03-31 10:42:30    阅读次数:208
InnoDB undo, redo,binlog,data什么时候写?
undo:相当于数据修改前的备份redo: 相当于数据修改后的备份,为了保证事务的持久化,redo会一直写Undo + Redo事务的简化过程 假设有A、B两个数据,值分别为1,2. A.事务开始. B.记录A=1到undo log. C.修改A=3. D.记录A=3到redo log. E.记录B...
分类:数据库   时间:2015-03-31 00:29:25    阅读次数:729
937条   上一页 1 ... 75 76 77 78 79 ... 94 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!