- 博客(75)
- 收藏
- 关注
转载 【DG】三张经典图片展示Data Guard主备之间日志传输及恢复
5.3.1.2ARCn Archival Processing5.3.2.2LGWR SYNC Archival Processing5.3.2.3LGWR ASYNC Archival Processing参考自ora...
2012-06-01 08:55:35
160
转载 Applying Redo Data to Physical Standby Databases
6.3 Applying Redo Data to Physical Standby DatabasesBy default, the redo data is applied from archived redo log ...
2012-05-31 20:54:39
177
转载 Using a Physical Standby Database with a Time Lag
12.8 Using a Physical Standby Database with a Time LagBy default, when log apply services are running on the s...
2012-05-31 20:42:48
228
转载 Manually Determining and Resolving Archive Gaps
5.8.4 Manually Determining and Resolving Archive GapsIn some situations, automatic gap recovery may not take p...
2012-05-31 19:15:33
169
转载 Planning for Growth and Reuse of the Control Files
The maximum control file size is 20000 database blocks. If DB_BLOCK_SIZE equals 8192, then the maximum control fil...
2012-05-31 18:23:53
95
转载 ORA-12012: error on auto execute of job 83
cd /data/oracle/product/10.2.0.1/OPatchcp /home/oracle/p8350262_10205_Generic.zip .[oracle@ora OPatch]$ unzip p...
2012-05-24 23:46:48
254
转载 Where Are The Controlfile 'Max' Parameters Stored?
有人问到这个问题,当我们创建控制文件时指定的以下这些参数,是否可以从数据库的字典表中查询得到?MAXLOGFILES MAXLOGMEMBERS MAXDATAFILES MAXINSTANCESMAXLOGHISTORY ...
2012-05-24 13:21:21
86
转载 oracle 分面查询
1.rownum 分页:(select * from emp)2.显示rownum [oracle 分配的]select a1.*,rownum rn from (select * from emp ) a13....
2012-05-22 16:27:55
97
转载 10gR2中awrsqrpt.sql介绍
在RDBMS/admin/awrsqrpt.sql中,这个脚本可以方便地取出某个sql在某两个快照间隔内,它总的消耗的cpu时间,执行次数,逻辑读,物理读,sql的执行计划以及sql的full sql text等生成...
2012-05-17 11:57:56
212
转载 Create SPFILE Under ASM
-- Suppose that the database instance name is "osmdr"-- In the database instance When trying to create a new spf...
2012-05-03 17:21:39
100
转载 ORACLE 10G RAC+ASM 增加controlfile (安装好默认只有一个控制文件)
ORACLE10GRAC+ASM默认只有一个控制文件,如何增加多个控制文件的副本呢?网上的做法是直接恢复控制文件,但在哪里恢复没有说清楚.其实只要复制原来的控制文件即可.因为如果是恢复来自备份的控制文件,那么就和当前...
2012-05-03 15:13:24
245
转载 ORA-02354 ORA-01555
data/oracle/product/10.2.0.1/bin/expdp mma/mma schemas=mma directory=dump_dir dumpfile=expdp_mma_`date +%F`_%U.dm...
2012-04-18 12:09:00
404
转载 rlwrap 安装
默认情况下,在LINUX下使用SQLPLUS非常麻烦,退格键和命令记录都不能使用,我们最好安装rlwrap来实现在SQLPLUS和RMAN里的退格键和命令记录的功能# yum install ncurses ncurs...
2012-04-06 14:24:38
130
转载 Quiesce Database
Quiesce DatabaseYou can put the system into quiesced state. The system is in quiesced state if there are no acti...
2012-04-06 11:07:54
153
转载 Database in quiesce mode
今天在oracle 10.2.0.5中安装EM时,总是卡住:[oracle@rac3 ~]$ emca -config dbcontrol db -repos createSTARTED EMCA at Apr 6,...
2012-04-06 10:43:17
110
转载 Oracle 10g UNDO表空间过大导致磁盘空间不足的解决
在Oracle 10g数据库的应用中,出现了UNDO表空间过大导致磁盘空间不足而崩溃的现象(ORA-30036: unable to extend segment by 8 in undo tablespace 'UNDOTBS...
2012-03-28 16:07:58
243
转载 rac 集群必会 [转]
最近整理了一下 RAC 方面的内容,稍作总结,发现 RAC 在集群这个层面需要知道的东西主要如下。1.查看CRS栈状态及各个服务的状态,配置CRS自动启动,启动关闭CRS2.查看修改 CRS参数 misscoun...
2012-03-14 14:55:18
109
转载 最近跟踪了下GMCC一个系统的ORACLE性能问题,大致有这些方法
1、登录数据库2、看CPU是否耗用过多,运行队列是否过多vmstat --CPU当时有100多个任务在队列中3、看是否有CPU过高的进程top/prstat --系统CPU资源消耗100%,ORACLE进程占92%4、检...
2012-03-09 10:29:11
129
转载 Backup && recover read only tablespace
1.alter tablesacpe read only SQL> alter tablespace test1 read only; Tablespace altered. ...
2012-03-07 17:34:31
119
转载 Making User-Managed Backups of Read-Only Tablespaces
Making User-Managed Backups of Read-Only TablespacesWhen backing up an online read-only tablespace, you can si...
2012-03-06 23:12:14
130
转载 只读表空间[转]
顾名思义,只读表空间就是空间只可读,不可写,这一特性对备有有很大的好处,尤其是对数据仓库这种历史数据很少变化,而数据规模又非常庞大的场景。下面通过一些例子来说明只读表空间如何影响备份与恢复。1. 创建表空间及表SQL&g...
2012-03-06 11:50:08
117
转载 Oracle 常用dump命令 [转]
以前也整理过一遍有关跟踪事件的文章,不过命令方面没有这篇强。Oracle 跟踪事件 set eventhttp://blog.youkuaiyun.com/tianlesoftware/archive/2009/12/10/4...
2012-03-05 23:00:15
64
转载 Improving Incremental Backup Performance: Change Tracking
4.4.4 Improving Incremental Backup Performance: Change TrackingRMAN's change tracking feature for incremental ...
2012-03-05 13:25:17
75
转载 How do you rename a datafile in Oracle?
在一个测试库上向tablespace 中加datafile时,一时大意,把数据文件名写错了(barcode2010_02.dbf rename to barcode05.dbf) ,需要更改一下datafile 名称,...
2012-03-05 09:36:57
77
转载 EXP-00091: Exporting questionable statistics
cat EXP_P2011.sh #!/bin/bashNLS_LANG=AMERICAN_AMERICA.UTF8 ;export NLS_LANG/u01/app/oracle/product/10.2.0/db...
2012-03-02 09:28:52
79
转载 keep池 [转]
问题:有一张表,里面仅有几百最多不过几千条记录,而业务需要,每条都要对此表进行N(上万)次的查询操作,有什么方法可以大大缩短查询此表的响应时间? 解答(不一定是唯一方法,但是很有效):将此表放于keep池中, ...
2012-02-29 14:51:06
118
转载 Oracle SQL_TRACE使用小结 [转]
一、关于基础表Oracle10G之前,启用AUTOTRACE功能需要手工创建plan_table表,创建脚本为$ORACLE_HOME/rdbms/admin/utlxplan.sql。但在10g中,已经默认创建了PLAN_TA...
2012-02-23 16:28:34
100
转载 关于Flashback日志管理的文档参考
关于Flashback日志管理的文档参考This document is being delivered to you via Oracle Support\'s Rapid Visibility (RaV) proc...
2012-02-17 13:43:49
140
转载 logging_clause
Syntaxlogging_clause::=Description of the illustration logging_clause.gifSemanticsThis section describes the...
2012-02-15 09:03:27
104
转载 Oracle中append与Nologging /*+ append */
1.Nologging的设置跟数据库的运行模式有关a.数据库运行在非归档模式下: SQL> archive log list;Database log mode ...
2012-02-14 16:52:45
750
转载 大表分区
公司BARCODE_MASTER 这个表的数据上1.5亿多条,表的达到了16个G,平时用来查询公司产品的条码了,由于最近查询有点慢,领导考虑把这个表来分区:script.:1. 创建分区表:CREATE TABLE HM...
2012-02-10 17:30:09
134
转载 Administration - Session [转]
source:http://www.shutdownabort.com/dbaqueries/Administration_Session.phpAdministration - SessionShow all...
2012-01-17 15:52:19
93
转载 Oracle 中的Userenv() [转]
1.USEREVN()返回当前用户环境的信息,opt可以是:ENTRYID,SESSIONID,TERMINAL,ISDBA,LABLE,LANGUAGE,CLIENT_INFO,LANG,VSIZE1.IS...
2012-01-10 16:54:12
81
转载 Oracle 客户端 NLS_LANG 的设置[转]
1. NLS_LANG 参数组成NLS_LANG参数由以下部分组成:NLS_LANG=_.NLS_LANG各部分含义如下:LANGUAGE指定:-Oracle消息使用的语言-日期中月份和日显示TERRITORY指定-货币...
2012-01-10 15:07:50
292
转载 ORACLE 中dbms_stats的使用 [转]
source:http://www.blogjava.net/envoydada/archive/2009/02/07/253698.html dbms_stats能良好地估计统计数据(尤其是针对较大的分区表),并能获...
2012-01-06 15:48:02
77
转载 CRS-4000: Command Stop failed, or completed with errors.
在安装linux.x64_11gR2_grid.zip 时出现下面的错误,不知什么问题?[root@rac1 grid]# cat /proc/meminfo MemTotal: 2049404 kB[r...
2011-12-31 15:55:51
883
转载 PRVF-5436 : The NTP daemon running on one or more nodes lacks the slewing
During ClusterWare installation , show following errors: Network Time Protocol (NTP) – This task verifies cluste...
2011-12-31 13:56:10
558
转载 oracle 11G install (未完)
ParameterMinimum ValueFilesemmsl semmnssemopmsemmni250 32000100128/proc/sys/kernel...
2011-12-22 10:21:29
80
转载 Oracle Flashback技术总结
http://space.itpub.net/26464953/viewspace-713395http://space.itpub.net/235507/viewspace-620808http://space.itp...
2011-12-19 10:38:04
77
转载 Oracle归档日志删除 [转]
http://maincoolbo.**.com/blog/568519我们都都知道在controlfile中记录着每一个archivelog的相关信息,当然们在OS下把这些物理文件delete掉后,在我们的 controlfi...
2011-12-08 13:34:24
173
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人