今天再做巡检的时候发现有一台服务器的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
$.extend({loading:function(){$("").css({display:"block",width:"100%",height:$(document.body).height()}).appendTo("body");$("").html("正在提交数据,请稍候。。。").a...
分类:
其他好文 时间:
2014-07-03 00:32:48
阅读次数:
522
??一、逻辑体系结构图 二、逻辑结构图组成介绍 从上表能够看出,一个数据库是由多个表空间(tablespace)组成,一个表空间又由多个段(segment)组成,一个段又由多个区(extent)组成,一个区则由多个块(block)组成。 一个数据库中,UNDO和SYSTEM表空间是必须存在的。...
分类:
数据库 时间:
2014-07-02 21:58:30
阅读次数:
240
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
FNRCS0005E: SECURITY_INVALID_CREDENTIALS
分类:
其他好文 时间:
2014-07-01 17:05:43
阅读次数:
259
com.mysql.jdbc.Driverjdbc:mysql://localhost:3306/h01root123org.hibernate.dialect.MySQL5Dialecttruetruenone这两行换下位置即可
分类:
移动开发 时间:
2014-07-01 11:40:01
阅读次数:
273
题目
You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers and return it a...
分类:
其他好文 时间:
2014-07-01 09:11:07
阅读次数:
206
题目:
链接:
题意:
思路:
代码:
#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