Backup 是将 volume 备份到别的地方(备份设备),将来可以通过 restore 操作恢复。 初看 backup 功能好像与 snapshot 很相似,都可以保存 volume 的当前状态,以备以后恢复。但二者在用途和实现上还是有区别的,具体表现在: Snapshot 依赖于源 volum ...
分类:
其他好文 时间:
2017-11-07 13:21:41
阅读次数:
752
A user performs an update on a table. Shortly after committing the transaction, they realize that theyhad an error in their WHERE clause causing the w ...
分类:
其他好文 时间:
2017-11-06 20:16:21
阅读次数:
169
What is the purpose of the until change option of the restore command?A. It allows you to select the SCN that you want to restore to. B. It allows you ...
分类:
其他好文 时间:
2017-11-06 18:04:48
阅读次数:
111
### scripts 1--the scirpt is used for restore db from vcs to a point to time recovery--and the target datafile and logfile is different from source ## ...
分类:
其他好文 时间:
2017-11-06 11:07:24
阅读次数:
202
创建数据库 create database testdatabase 切换数据库: use testdatabase use master 备份sql server 创建 备份数据的 device USE master EXEC sp_addumpdevice 'disk', 'testBack5' ...
分类:
数据库 时间:
2017-11-04 11:13:07
阅读次数:
320
本次测试目的是从生产数据库导出rman备份然后在测试数据库恢复 1,拷贝备份至相应目录 2,进入rman rman target \ 3,关闭数据库 shutdown 4,以nomount模式启动数据库 startup nomount 5,恢复控制文件 restore controlfile fro ...
分类:
数据库 时间:
2017-11-02 11:32:11
阅读次数:
201
1)一般启动方式 [root@zabbix core5]# netstat -tulpnActive Internet connections (only servers)Proto Recv-Q Send-Q Local Address Foreign Address State PID/Prog ...
分类:
其他好文 时间:
2017-11-02 11:31:37
阅读次数:
163
分析了一下360的HOOK,通过直接hook KiFastCallEntry实现以所有系统调用的过滤。我分析的版本如下:主程序版本: 6.0.1.1003HookPort.sys版本: 1, 0, 0, 1005HookPort.sys的TimeStamp: 4A8D4AB8简单说明:360把所有被 ...
分类:
其他好文 时间:
2017-11-01 01:17:29
阅读次数:
193
给定一棵二叉树的先序遍历序列和中序遍历序列,要求计算该二叉树的高度。 输入格式: 输入首先给出正整数N(≤50),为树中结点总数。下面两行先后给出先序和中序遍历序列,均是长度为N的不包含重复英文字母(区别大小写)的字符串。 输出格式: 输出为一个整数,即该二叉树的高度。 输入样例: 9 ABDFGH ...
分类:
其他好文 时间:
2017-10-20 21:30:33
阅读次数:
138
上期实现了数据投影的功能,现在就可以来实现坐标轴了。 以前只是整个画板范围内进行绘制,现在如果要进行坐标轴绘制,就要给画板分不同区域。 然后给 ChartElement 添加一个 area 属性 默认绘制到 plot 上 然后实现一个 Axis ,area 默认到 xAxis,ticks 是刻度值的 ...
分类:
其他好文 时间:
2017-10-20 13:34:57
阅读次数:
295