上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 57 下一页
摘要: 关于Oracle 临时表,参考我的Blog: Oracle 临时表 http://blog.csdn.net/tianlesoftware/archive/2009/10/20/4705283.aspx对Oracle 临时表的操作,会产生redo 和undo。先看一个示例:SYS@anqing1(rac1)> CREATE GLOBAL TEMPORARY TABLE dave_test (id number,name varchar2(20)) ON COMMIT DELETE ROWS;Table created.SYS@anqing1(rac1)> set autotrace 阅读全文
posted @ 2011-05-30 14:57 hibernate我最强 阅读(160) 评论(0) 推荐(0) 编辑
摘要: 安装操作系统的时候,有一部分空间没有使用,在系统安装后,准备重新分区并格式化,在挂到/u01 下,来安装Oracle的。分区的过程正常:[root@db1 /]# fdisk -lDisk /dev/sda: 21.4 GB, 21474836480 bytes255 heads, 63 sectors/track, 2610 cylindersUnits = cylinders of 16065 * 512 = 8225280 bytes Device Boot Start End Blocks Id System/dev/sda1 * 1 13 104391 83 Linux/dev/s. 阅读全文
posted @ 2011-05-27 16:32 hibernate我最强 阅读(334) 评论(0) 推荐(0) 编辑
摘要: 1. 看到同事的签名:想起去年五月在北京的时候,和姜兄通宵代码、泡面,放着王力宏的那几首歌....2010年的5月,我又在干什么? 今天有个朋友给我的blog 留言,恰好是2010年5月21日。 链接如下: 2010年5月21日 下雨了 http://blog.csdn.net/tianlesoftware/archive/2010/05/21/5613714.aspx 原来去年的5月我在那个啥....2. 昨天花了大半天的时间把DB 小优化了一下,简单的说,就是抓SQL,然后优化SQL。 由于XX 的原因,最近DB 有大量的等待事件,系统也反应比较慢。对一个表建了索引之后,cost 从1.4 阅读全文
posted @ 2011-05-27 15:11 hibernate我最强 阅读(109) 评论(0) 推荐(0) 编辑
摘要: 在Oracle 10g中,推出了一些与DB 性能相关的功能,比如AWR, ADDM, STA, 已经这篇讲的ASH(Active Session History)。 关于其他的几个功能说明,参考我之前的Blog: Oracle AWR 介绍 http://blog.csdn.net/tianlesoftware/archive/2009/10/16/4682300.aspx Oracle ADDM 自动诊断监视工具 介绍 http://blog.csdn.net/tianlesoftware/archive/2010/05/28/5630942.aspx 如何用 SQL Tuning Adv. 阅读全文
posted @ 2011-05-26 23:24 hibernate我最强 阅读(928) 评论(0) 推荐(0) 编辑
摘要: 一. 说明在之前的blog: Oracle Statistic 统计信息 小结 http://blog.csdn.net/tianlesoftware/archive/2009/10/15/4668723.aspx 里对统计信息的收集有说明, Oracle 的Automatic Statistics Gathering 是通过Scheduler 来实现收集和维护的。 Job 名称是GATHER_STATS_JOB, 该Job收集数据库所有对象的2种统计信息: (1)Missing statistics(统计信息缺失) (2)Stale statistics(统计信息陈旧) 该Job 是在数据库 阅读全文
posted @ 2011-05-25 20:31 hibernate我最强 阅读(124) 评论(0) 推荐(0) 编辑
摘要: 朋友说数据库异常宕机后,启动时报600错误。ora-00600:internal error code ,arguments:[kccpb_sanity_check_2],[3106],[3104],[0x000000000],[],[],[],[]在官网搜了一下,相关的说明如下:Cause [kccpb_sanity_check_2] indicates that the seq# of the last read block is higher than the seq# of the control file header block. This is indication of the 阅读全文
posted @ 2011-05-25 12:25 hibernate我最强 阅读(210) 评论(0) 推荐(0) 编辑
摘要: 官网的两个连接如下:Tables and Table Clustershttp://download.oracle.com/docs/cd/E11882_01/server.112/e16508/tablecls.htm#i20438Indexes and Index-Organized Tableshttp://download.oracle.com/docs/cd/E11882_01/server.112/e16508/indexiot.htm#CBBFIFAB这2个文章讲的比较详细,在这里我将一些内容粘贴出来。You can create a relational table with 阅读全文
posted @ 2011-05-24 21:29 hibernate我最强 阅读(174) 评论(0) 推荐(0) 编辑
摘要: 一. dba_errors 表官网对这个表的说明如下:ALL_ERRORS:describes the current errors on the stored objects accessible to the current user.DBA_ERRORS:describes the current errors on all stored objects in the database.USER_ERRORS: describes the current errors on the stored objects owned by the current user. This view d 阅读全文
posted @ 2011-05-19 23:23 hibernate我最强 阅读(123) 评论(0) 推荐(0) 编辑
摘要: Oracle 官网有关单实例迁移到RAC的一个步骤说明: How to Convert 10g Single-Instance database to 10g RAC using Manual Conversion procedure [ID 747457.1] http://blog.csdn.net/tianlesoftware/archive/2010/12/09/6065903.aspx RMAN 备份异机恢复 并创建新DBID http://blog.csdn.net/tianlesoftware/archive/2011/03/11/6240983.aspx一. 大致操作步骤如下: 阅读全文
posted @ 2011-05-19 16:19 hibernate我最强 阅读(1393) 评论(0) 推荐(0) 编辑
摘要: Applies to: Oracle Server - Enterprise Edition - Version: 10.2.0.1 to 11.1.0.6Information in this document applies to any platform.GoalThis document describes the procedures for converting from Oracle ASM 10g single-instance to Oracle Real Application Clusters (RAC). SolutionTo convert a single-inst 阅读全文
posted @ 2011-05-18 15:38 hibernate我最强 阅读(121) 评论(0) 推荐(0) 编辑
上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 57 下一页