control file 中包含以下内容:database nametime stamp of database creationSynchronization information(checkpoint and log sequence information) needed for recov...
分类:
其他好文 时间:
2014-09-26 11:55:58
阅读次数:
354
在数据库中所有的文件都可以丢失,唯有OnlineRedoLogFiles和ArchiveRedoLogFiles不可以丢失,否则数据库将无法恢复。一、什么是联机重做日志文件联机重做日志文件的主要用于数据库的备份和恢复,它记录了数据的所有变化情况,提供了数据的恢复机制(Oracle在对数据进行操作时,..
分类:
数据库 时间:
2014-09-26 07:58:48
阅读次数:
514
做日常巡检的时候发现alert日志中有这个错误Thread1cannotallocatenewlog,sequence319708Checkpointnotcomplete这个实际上是个比较常见的错误。通常来说是因为在日志被写满时会切换日志组,这个时候会触发一次checkpoint,DBWR会把内存中的脏块往数据文件中写,只要没写结束就..
分类:
数据库 时间:
2014-09-25 13:06:39
阅读次数:
183
oracle分析函数十分强大,我们只要掌握这些方法,更直接的说法就是知道这些分析函数的作用就能完成很多工作。
下边贴出这些函数,及简单应用。
其中我想对lag()和lead()函数坐下说明:lag()本身是延后的意思也就是延后出现某列的数,而lead()有引领、领先的意思也就是提前几行显示某列数据
RANK()
dense_rank()
【语法】RANK ( ) OVER ( [qu...
分类:
数据库 时间:
2014-09-25 12:31:18
阅读次数:
297
在SQL Server中有一个非常重要的命令就是CheckPoint,它主要作用是把缓存中的数据写入mdf文件中。其实在我们进行insert, update, delete时,数据并没有直接写入数据库对应的mdf文件中,而是写入了缓存里,这有点像电驴,因为过于频繁的写入会使磁盘的寿命大大减小。从上图...
分类:
数据库 时间:
2014-09-24 23:56:37
阅读次数:
298
1.修改conf/core-site.xml增加 fs.checkpoint.period 3600 The number of seconds between two periodic checkpoints. fs.checkpoint.size 67108864 The size of ...
分类:
其他好文 时间:
2014-09-22 20:25:53
阅读次数:
247
Replicat maintains checkpoints that provide a known position in the trail from which to
start after an expected or unexpected shutdown. By default, a record of these checkpoints
is maintained in a f...
分类:
其他好文 时间:
2014-09-21 13:21:10
阅读次数:
235
A. Practical Byzantine Fault Tolerance
1.What’s its checkpoint?
We will refer to the states produced by the execution of these requests as checkpoints and we will say that a checkpoint with...
分类:
其他好文 时间:
2014-09-21 10:34:30
阅读次数:
283
LAG()和LEAD()统计函数能够在一次查询中取出同一字段的前N行的数据和后N行的值。这样的操作能够使用对同样表的表连接来实现,只是使用LAG和 LEAD有更高的效率。下面整理的LAG()和LEAD()样例:LAG(EXPRESSION,,)SQL> select year,region,prof...
分类:
数据库 时间:
2014-09-19 19:06:55
阅读次数:
236