上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 58 下一页
摘要: 一.Trails 说明理论知识在系列一里有说明,这里在拿出来看一下:Oracle Golden Gate 系列一 -- GG 架构 说明http://blog.csdn.net/tianlesoftware/article/details/6925907 To support thecontinuous extraction and replication of database changes, Oracle GoldenGatestores the captured changes temporarily on disk in a series of files called a trai 阅读全文
posted @ 2011-11-19 11:30 hibernate例子 阅读(124) 评论(0) 推荐(0) 编辑
摘要: 一.使用命令查看主要有如下命令:这里注意STATS 指静态的信息,而STATUS 是运行时的信息。1.1 Monitoring an Extract recovery If Extractabends when a long-running transaction is open, it can seem to take a long timeto recover when it is started again. To recover its processing state, Extractmust search back through the online and archived l 阅读全文
posted @ 2011-11-18 20:20 hibernate例子 阅读(223) 评论(0) 推荐(0) 编辑
摘要: 一.Checkpoints 理论说明有关GG的Checkpoints 在系列一, GG的架构中以说明:OracleGolden Gate 系列一 --GG 架构 说明http://blog.csdn.net/tianlesoftware/article/details/6925907这里在单独拿出来说明一下,因为这是一个较为重要的概念。 Checkpoints storethe current read and write positions of a process to disk for recovery purposes.These checkpoints ensure that dat 阅读全文
posted @ 2011-11-17 20:05 hibernate例子 阅读(189) 评论(0) 推荐(0) 编辑
摘要: 一.初始化说明 GG实施过程中,初始化是一个重要的工作,尤其是要初始化的数据较多,并且系统又是7*24的时。 对于静态初始化,把业务停掉,DB 上的数据就不会有变化,这时候,我们可以用expdp/impdp 或者dblink 等方式把基数据同步过去, 在启动相关的GG 同步进程就可以了。 但如果要求零停机,DB事务就会不间断进行,可以通过如下两种方法来保证初始化过程中事务的完整性和数据的准确性呢 1. 利用 Keys + Handlecollisions 2. 利用 commit SCN/CSN1.1 Keys+Handlecollisions 方法在我们系列九中的说明和测试使用的就是第... 阅读全文
posted @ 2011-11-17 17:39 hibernate例子 阅读(205) 评论(0) 推荐(0) 编辑
摘要: 一. 官网说明Oracle官方文档对Bootstrap$的说明:UnderstandingBootstrap Of Oracle Databasehttp://blog.csdn.net/tianlesoftware/article/details/6823453 In Oracle,Bootstrap refers to loading of metadata (data dictionary) before we OPEN thedatabase. Bootstrap objects are classified as the objects (tables / indexes / clu 阅读全文
posted @ 2011-10-31 19:24 hibernate例子 阅读(220) 评论(0) 推荐(0) 编辑
摘要: 一. X$表说明之前整理了一篇有关动态性能视图的blog:Oracle 动态性能视图http://blog.csdn.net/tianlesoftware/article/details/5863191Oracle 参数分类 和 参数的查看方法http://blog.csdn.net/tianlesoftware/article/details/5583655 The fixed X$tables are no real tables; you will not find them in any database schema. Thesevirtual tables provide a SQ 阅读全文
posted @ 2011-10-30 19:13 hibernate例子 阅读(199) 评论(0) 推荐(0) 编辑
摘要: 一.FlashbackDatabase 和 Restore Points 说明官网的链接如下:http://download.oracle.com/docs/cd/E18283_01/backup.112/e10642/flashdb.htm关于FlashbackDatabase 的内容,我之前的blog里有说明:Oracle Flashback 技术 总结http://blog.csdn.net/tianlesoftware/article/details/4677378这里提到这两者,是因为这两者的功能和类似。官方的说明如下: OracleFlashback Databaseand res 阅读全文
posted @ 2011-10-29 21:06 hibernate例子 阅读(222) 评论(0) 推荐(0) 编辑
摘要: 一.Oracle Lifetime Support 分类网站的说明http://www.oracle.com/us/support/lifetime-support/index.html在如下这篇文章里有更详细的说明:http://www.oracle.com/us/support/library/lifetime-support-technology-069183.pdfOracle Lifetime Support Policy With OracleSupport, you know up front and with certainty how long your Oracle pro 阅读全文
posted @ 2011-10-27 19:01 hibernate例子 阅读(292) 评论(0) 推荐(0) 编辑
摘要: 数据库版本是10.2.0.1,使用EXPDP 导数据的时候,alert log 出现如下信息:Wed Oct 26 12:14:02 2011The value (30) of MAXTRANS parameterignored.kupprdp: master process DM00 started withpid=73, OS id=4731to execute - SYS.KUPM$MCP.MAIN('SYS_EXPORT_SCHEMA_01', 'SYS','KUPC$C_1_20111026121403', 'KUPC$S_1_ 阅读全文
posted @ 2011-10-27 12:45 hibernate例子 阅读(281) 评论(0) 推荐(0) 编辑
摘要: 一.Byte 与 bit 说明 在计算机科学中,bit是表示信息的最小单位,叫做二进制位;一般用0和1表示。Byte叫做字节,由8个位(8bit)组成一个字节(1Byte),用于表示计算机中的一个字符。bit与Byte之间可以进行换算,其换算关系为:1Byte=8bit(或简写为:1B=8b);在实际应用中一般用简称, 即1bit简写为1b(注意是小写英文字母b),1Byte简写为1B(注意是大写英文字母B)。 在计算机网络或者是网络运营商(Internet service provider)中,一般,宽带速率的单位用bps(或b/s,小b)表示;bps表示比特每秒即表示每秒钟传输多少位信息, 阅读全文
posted @ 2011-10-26 23:41 hibernate例子 阅读(273) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 58 下一页