Oracle重做日志(redolog)是用来记录操作条目,用于数据库数据恢复。为了提高效率,oracle通常建议设置三组redolog。一.概述oracle重做日志组通常有四种状态,即unused,inactive,active,current。unused通常指从未被使用的日志组,即新添加的日志组。current状态为LGWR进程..
分类:
数据库 时间:
2016-10-14 00:43:07
阅读次数:
307
DBV是一个外部命令,能够执行物理数据结构的完整性检查。DBV只能检查可缓存管理的块(数据块),所以只能用于数据文件,不支持控制文件和重做日志文件的块检查。DBV使用于offline或者online的数据文件,也可也验证备份文件,但是备份文件只能是rman的copy命令或者操作系统的cp(win下是 ...
分类:
数据库 时间:
2016-10-01 17:14:07
阅读次数:
245
导出备份文件停掉从库,注释#slave=true#source启动mongo,删除需要恢复的库usemydb;db.dropDatabase();执行恢复停掉mongo,打开注释slave=true#source重新启动从库rs.slaveOk();
分类:
数据库 时间:
2016-09-28 19:50:44
阅读次数:
166
Given an array of size n, find the majority element. The majority element is the element that appears more than ? n/2 ? times. You may assume that the ...
分类:
其他好文 时间:
2016-09-28 07:37:32
阅读次数:
100
工单详情,工单列表字段整理! 文件路径:C:\Users\wgs\AppData\Local\Temp\DMS接口.docx ...
分类:
其他好文 时间:
2016-09-26 11:08:07
阅读次数:
129
这篇文章将与大家聊一聊游戏开发中命令模式的用法。命令模式的成名应用是实现诸如撤消,重做,回放,时间倒流之类的功能。如果你想知道《Dota2》中的观战系统、《魔兽争霸3》中的录像系统、《守望先锋》的全场...
分类:
其他好文 时间:
2016-09-25 23:34:16
阅读次数:
615
1. 常规编辑交互功能 (1)复制(Copy)、粘贴(Paste)、剪切(Cut)、撤销(Undo)、重做(Redo)、删除(Delete) (2)QPlainTextEdit提供了丰富的交互功能接口 2. 信号与槽的连接 【编程实验】基本编辑功能实现 3. 文本编辑器中的界面状态 (1)不是任何时 ...
分类:
其他好文 时间:
2016-09-25 09:32:29
阅读次数:
154
Given a binary tree, return all root-to-leaf paths. For example, given the following binary tree: All root-to-leaf paths are: Solution1: 用string是最方便的。 ...
分类:
其他好文 时间:
2016-09-24 07:03:29
阅读次数:
201
Given a binary tree, find its maximum depth. The maximum depth is the number of nodes along the longest path from the root node down to the farthest l ...
分类:
其他好文 时间:
2016-09-23 06:36:21
阅读次数:
178
Find the contiguous subarray within an array (containing at least one number) which has the largest sum. For example, given the array [-2,1,-3,4,-1,2, ...
分类:
其他好文 时间:
2016-09-22 06:35:29
阅读次数:
125