今天再做巡检的时候发现有一台服务器的RMAN备份不正常,有一段时间没能正常备份了。检查了一下脚本,正常,定时任务列表也正常,再检查一下/var/log/cron的内容,也没有问题。尝试在该挂载点上创建一个1.txt文件的时候,发现有异常报出来了。内容为:mount: block device /.....
分类:
其他好文 时间:
2014-07-03 10:31:23
阅读次数:
374
NSArray *stringArray = [NSArray arrayWithObjects:@"zhangsan",@"lisi",@"wangjun",@"lanlan",@"yangyi",@"qianzhongshu",@"sunwukong",@"wugang", nil]; NSA....
分类:
其他好文 时间:
2014-07-03 00:53:02
阅读次数:
238
CSS文档对HTML的显示和隐藏有2个属性可供选择:1、display2、visiblity这2个有什么区别呢?display:display版本:CSS1/CSS2 兼容性:IE4+ NS4+ 继承性:有语法:display : block | none | inline | compact |....
分类:
Web程序 时间:
2014-07-01 21:52:37
阅读次数:
299
在SSTable中主要存储数据的地方是data block,block_builder就是这个专门进行block的组织的地方,我们来详细看看其中的内容,其主要有Add,Finish和CurrentSizeEstimate三个函数。Finish的逻辑十分简单就是简单的将restart点信息和resta...
分类:
数据库 时间:
2014-07-01 20:51:08
阅读次数:
367
CentOS 65中安装vmware tools时出现如下错误,centos vmware tools install failure ,no default label for /tmp/vmware-block-restore......经过google,发现此篇文章 ,需要预先安装必备组件,g...
分类:
其他好文 时间:
2014-07-01 18:31:54
阅读次数:
230
Block 、数组高级block本质上就是匿名函数(没有名称的函数)block语法和函数指针很相似回顾函数函数:C语?中,实现某一类功能的代码段。完整的函数包含两部分:函数声明、函数定义函数声明,即函数原型。例如:int sum(int x,int y);具有两个整型参 数,一个整型返回值的函数。函...
分类:
移动开发 时间:
2014-07-01 18:04:45
阅读次数:
243
题目:
链接:
题意:
思路:
代码:
#include
#include
#include
using namespace std;
const int N = 30030;
int root[N];
int sum[N],rank[N];//sum[i]表示i下面的积木个数
int q;
int findset(int x)
{
if(x == r...
分类:
其他好文 时间:
2014-07-01 08:12:55
阅读次数:
178
IE6/7不支持display:inline-block属性,只是可以让标签有类似于inline-block的属性,起初我也是接受这种说法的,不过后来又表示了怀疑,最近使用text-align:justify;做测试的时候的一些样式表现证实了:确实IE6/7是不支持display:inline-bl...
分类:
其他好文 时间:
2014-06-30 22:10:44
阅读次数:
309
Blocks are a way to define a block of code that you will use at a later time.Sometimes people refer to blocks as anonymous functions because they are ...
分类:
其他好文 时间:
2014-06-30 15:21:04
阅读次数:
220
Volume managers Some Unix systems have snapshot-capable logical volume managers. These implement copy-on-write on entire block devices by copying chan...
分类:
其他好文 时间:
2014-06-30 14:53:23
阅读次数:
271