- 浏览: 4411319 次
- 性别:
- 来自: 厦门
文章分类
- 全部博客 (634)
- Oracle日常管理 (142)
- Oracle体系架构 (45)
- Oracle Tuning (52)
- Oracle故障诊断 (35)
- RAC/DG/OGG (64)
- Oracle11g New Features (48)
- DataWarehouse (15)
- SQL, PL/SQL (14)
- DB2日常管理 (9)
- Weblogic (11)
- Shell (19)
- AIX (12)
- Linux/Unix高可用性 (11)
- Linux/Unix日常管理 (66)
- Linux桌面应用 (37)
- Windows (2)
- 生活和工作 (13)
- 私人记事 (0)
- Python (9)
- CBO (15)
- Cognos (2)
- ORACLE 12c New Feature (2)
- PL/SQL (2)
- SQL (1)
- C++ (2)
- Hadoop大数据 (5)
- 机器学习 (3)
- 非技术 (1)
最新评论
-
di1984HIT:
xuexilee!!!
Oracle 11g R2 RAC高可用连接特性 – SCAN详解 -
aneyes123:
谢谢非常有用那
PL/SQL的存储过程和函数(原创) -
jcjcjc:
写的很详细
Oracle中Hint深入理解(原创) -
di1984HIT:
学习了,学习了
Linux NTP配置详解 (Network Time Protocol) -
avalonzst:
大写的赞..
AIX内存概述(原创)
一、概要
首先看看help
SQL> oradebug help
HELP [command] Describe one or all commands
SETMYPID Debug current process
SETOSPID <ospid> Set OS pid of process to debug
SETORAPID <orapid> ['force'] Set Oracle
pid of process to debug
SHORT_STACK Dump abridged OS stack
DUMP <dump_name> <lvl> [addr] Invoke named dump
DUMPSGA [bytes] Dump fixed SGA
DUMPLIST Print a list of available dumps
EVENT <text> Set trace event in process
SESSION_EVENT <text> Set trace event in session
DUMPVAR <p|s|uga> <name> [level] Print/dump a fixed PGA/SGA/UGA variable
DUMPTYPE <address> <type> <count> Print/dump an address with type info
SETVAR <p|s|uga> <name> <value> Modify a fixed PGA/SGA/UGA variable
PEEK <addr> <len> [level] Print/Dump memory
POKE <addr> <len> <value> Modify memory
WAKEUP <orapid> Wake up Oracle process
SUSPEND Suspend execution
RESUME Resume execution
FLUSH Flush pending writes to trace file
CLOSE_TRACE Close trace file
TRACEFILE_NAME Get name of trace file
LKDEBUG Invoke global enqueue service debugger
NSDBX Invoke CGS name-service debugger
-G <Inst-List | def | all> Parallel oradebug command prefix
-R <Inst-List | def | all> Parallel oradebug prefix (return output
SETINST <instance# .. | all> Set instance list in double quotes
SGATOFILE <SGA dump dir> Dump SGA to file; dirname in double quotes
DMPCOWSGA <SGA dump dir> Dump & map SGA as COW; dirname in double quotes
MAPCOWSGA <SGA dump dir> Map SGA as COW; dirname in double quotes
HANGANALYZE [level] [syslevel] Analyze system hang
FFBEGIN Flash Freeze the Instance
FFDEREGISTER FF deregister instance from cluster
FFTERMINST Call exit and terminate instance
FFRESUMEINST Resume the flash frozen instance
FFSTATUS Flash freeze status of instance
SKDSTTPCS <ifname> <ofname> Helps translate PCs to names
WATCH <address> <len> <self|exist|all|target> Watch a region of memory
DELETE <local|global|target> watchpoint <id> Delete a watchpoint
SHOW <local|global|target> watchpoints Show watchpoints
CORE Dump core without crashing process
UNLIMIT Unlimit the size of the trace file
PROCSTAT Dump process statistics
CALL <func> [arg1] ... [argn] Invoke function with arguments
SQL>
首先确认要追踪哪个进程?可以查询spid或是oracle自己的pid
SQL> select a.username,a.sid ,a.serial#,b.spid
from v$session a,v$process b
where a.paddr=b.addr
/
------查询spid
以本次实验为例
USERNAME SID SERIAL# SPID
------------------------------ ---------- ---------- ------------
SCOTT 155 1524 2204
SQL> select pid,spid,username from v$process;
PID SPID USERNAME
---------- ------------ ---------------
23 2204 Administrator
设定追踪
SQL> oradebug setospid 2204
Oracle pid: 15, Windows
thread id: 2204, image: ORACLE.EXE (SHAD)
或设定
SQL> oradebug setorapid 23
SQL> oradebug unlimit
已处理的语句
本次有个疑问: 为什么显示是ORACLE.EXE?windows进程与线程的问题?
…
oracle 3180 8 24 482 223056 0:00:50.212 2:15:12.204
2204 9 89 Wait:UserReq 0:00:00.020 0:00:00.010 0:08:37.113
sid设定之后,可以用来dump的东西可用oradebug dumplist 列出。在这些项中绝大部分,都有2,4,6,8,10,12等几个跟踪级别。
A. 获得系统状态
用于获得系统状态
SQL> oradebug dump systemstate 10
已处理的语句
(注:有趣的事件发生了,系统生成trc用ue打开,然后将文件内容删除,此时ue的设定生成了一个bak文件。仔细观察,发现oradebug指向的trc出口也发生了变化,指向了bak文件)
如果系统hung的时候,systemstate基本等同于hanganalyze,可以用于诊断system hung
SQL> oradebug hanganalyze 12
Hang Analysis in d:\oracle\product\10.2.0\admin\orcl\udump\orcl_ora_3576.trc
B. 获得某个进程状态
SQL> oradebug setospid 3188
Oracle pid: 12, Windows thread id: 3188, image: ORACLE.EXE (MMNL)
SQL> oradebug setospid 1192
ORA-01858: 在要求输入数字处找到非数字字符
(注:测试
发现该进程必须是ORACLE进程/线程)
SQL> oradebug dump processstate 10
已处理的语句
C. 也可以获得进程的错误信息状态
SQL> oradebug dump errorstack 3
已处理的语句
(注:本处没有产生新的trace,难道是需要出错的时候才有信息?)
D.定位现在在使用哪个trace
SQL> oradebug TRACEFILE_NAME
d:\oracle\product\10.2.0\admin\orcl\udump\orcl_ora_3648.trc
1.Trace a session SQL
1) 如果是只想抓取用户sql语句的话(level 1),使用DBMS_SYSTEM包
select a.username,a.sid ,a.serial#,b.spid
from v$session a,v$process b
where a.paddr=b.addr
/
USERNAME SID SERIAL# SPID
------------------------------ ---------- ---------- -------------------- ---------- ---------- -------
SCOTT 143 6 3260
执行
SQL> execute dbms_system.set_sql_trace_in_session(143,6,true);
开启对该进程的trace,记录在trace文件中。
执行
SQL> execute dbms_system.set_sql_trace_in_session(143,6,false);
关闭追踪
2) 如果想进行更高级别的抓取,level 4,要使用oradebug
首先按照前面得到进程的spid
SQL> oradebug setospid 3260
Oracle pid: 22, Windows thread id: 3260, image: oracle.exe (SHAD)
SQL> oradebug event 10046 trace name context forever,level 4
已处理的语句
(注:可以同时追踪多个进程,setospid …. , Oradebug …10046…)
抓取后取消追踪使用
SQL> oradebug event 10046 trace name context off
已处理的语句
2. Tracing errors use oradebug
例如要追踪能造成ORA-0094/952错误的会话,则
SQL> oradebug event 942 trace name errorstack level 3
已处理的语句
SQL> oradebug event 952 trace name errorstack level 3
已处理的语句
3. Trace ORA-04030
ORA-04030是由于某些进程请求的内存不断增大最后导致溢出的错误
SQL > oradebug setodpid <pid>
SQL > oradebug unlimit
SQL > oradebug dump heapdump 5 ßthis dump PGA and UGA heaps
4. waking up PMON to release DDL locks
首先确认PMON进程是who
SQL> select pid,spid from v$process p,v$bgprocess b
where b.paddr=p.addr
and name='PMON';
PID SPID
---------- ------------
2 3608
SQL> oradebug wakeup 2
已处理的语句
5. 暂停和启动进程(suspending and resuming a process)
SQL> oradebug setospid ***
SQL> oradebug suspend
Or
SQL> oradebug setospid ***
SQL> oradebug resume
6. DUMP很多东西
oradebug可以dump很多内容,例如latch / library_cache / locks / controlfile 等等
具体可参照 oradebug dumplist 的信息
例子:
oradebug dump controlf 10
oradebug dump file_hdrs 10
-------------------------------------------------------------------
oradebug可以帮助我们做很多事情,如dump内存信息、设置事件、挂起进程等。本文主要介绍如何使用oradebug挂起进程。
为什么要挂起进程呢?比如因为开发人员对
数据库
执行一个很大的操作,严重影响了数据库的正常运行,此时你有两个选择:
1、删掉进程
2、暂停进程
实际上,我们往往不能十分确定把进程直接kill掉会造成什么后果,所以暂停进程的执行就是一个比较折中的选择。
要暂停进程步骤很简单:首先找到进程,然后暂停就可以了。
使用oradebug暂停进程时,可以使用pid,也可以使用spid。要找出这些信息有很多方式了,比如可以在操作系统中 ps -ef、可以通过v$session、v$process、v$bgprocess等视图通过关联得到。
下面通过一个例子来说明如何oradebug干预进程的执行状态:
1、找出进程号
本例我们要挂起以用户suk登录的会话:
以sys用户登录查询:
SQL> select pid,spid from v$process where addr in (select paddr from v$session where username='SUK');
PID SPID
---------- ------------
10 4107
2、设置要操作的进程号
有两种方法:
1)用spid设置
SQL> oradebug setospid 4107
Oracle
pid: 10, Unix process pid: 4107, image:oracle@suk
(TNS V1-V3)
2)用pid设置
SQL> oradebug setorapid 10
Unix process pid: 4107, image:oracle@suk
(TNS V1-V3)
3、暂停进程执行
SQL> oradebug suspend
Statement processed.
此时,进程号为4107的进程将会处于挂起状态。我们稍后可以重启它。
4、重启进程
重启进程也要先设置进程号:
SQL> oradebug setospid 4107
Oracle pid: 10, Unix process pid: 4107, image:oracle@suk
(TNS V1-V3)
SQL> oradebug resume
Statement processed.
注意:不能在会话中suspend当前会话。如果那样做的话,当前会话会被hang,并且不能被其他session resume,只能kill方式关闭。
参考至:http://space.itpub.net/16158219/viewspace-545169
如有错误,欢迎指正
邮箱:czmcj@163.com
发表评论
-
Oracle 11g、12c大量错误登陆尝试带来的数据库异常
2018-07-16 09:21 1533APPLIES TO: Oracle Database - ... -
如何定位那些SQL产生了大量的redo日志
2018-05-15 14:38 1785在ORACLE数据库的管理、 ... -
When Memory_target Is Set and Swap Size Is Not Big (Doc ID 2356025.1)
2018-03-16 18:13 1191Kkjcre1p: unable to sp ... -
Transparent Hugepage is not getting disabled (Doc ID 2279458.1)
2018-03-16 18:10 823Transparent Hugepage is ... -
Troubleshooting: "log file sync" Waits (文档 ID 1376916.1)
2017-03-09 14:32 1368What is a 'log file sync' wai ... -
log file sync总结
2017-03-09 14:36 3262log file sync等待时间发生在redo log从 ... -
Oracle Log File Sync Wait Event
2017-03-08 18:46 1172The Oracle “log file sync” wai ... -
Tuning ‘log file sync’ Event Waits
2017-03-08 18:41 859Tuning ‘log file sync’ Event ... -
Diagnosing buffer busy waits with the ash_wait_chains.sql script (v0.2)
2017-03-08 16:56 856Diagnosing buffer busy waits w ... -
Advanced Oracle Troubleshooting Guide – Part 11: Complex Wait Chain Signature An
2017-03-08 16:05 1099Here’s a treat for the hard-co ... -
Oracle 10046 SQL TRACE
2017-03-08 15:19 947为什么我们要使用10046 trace? 10046 ... -
Automatic Storage Management
2016-11-03 15:33 870SYSASM Role When Automatic ... -
ASM FAQ
2016-11-03 15:29 735ASM FAQ Oracle Automatic ... -
Oracle ALTER PROFILE语法
2016-10-10 11:36 3413ALTER PROFILE Purpose Use th ... -
Oracle FGA审计
2016-09-20 09:42 1390大家对trigger可能比较熟悉,但Oracle还有一个叫 ... -
Secret.txt
2016-09-14 17:20 0考试登录账号:YAMAC0043865 Chen1988协会网 ... -
Oracle Data Pump Internals
2016-09-13 16:38 786IntroductionOracle Data Pump w ... -
UDEV SCSI Rules Configuration for ASM in Oracle Linux 5, 6 and 7
2016-09-12 16:32 850UDEV SCSI Rules Configuration ... -
Cannot Allocate New Log
2016-02-21 12:28 5453故障报错 Thread 1 cannot allocat ... -
Oracle flashback dropped tablespace(原创)
2015-11-15 22:21 2017Oracle官方并不推荐在数据库物理结构发生改变的情况下进行 ...
相关推荐
### oradebug操作手册知识点详解 #### 一、oradebug简介 -oradebug是Oracle数据库中的一个非公开工具,主要用于高级调试与诊断任务。它可以让用户深入查看数据库引擎内部的工作状态,尤其适用于处理极端情况下的...
oradebug诊断oracle resource竞争
oracle oradebug常用命令
10053事件是oracle提供的用于跟踪sql语句成本计算的内部事件,它能记载CBO模式下oracle优化器如何计算sql成本,生成相应的执行计划。
设置Oracle数据库诊断事件有多种方式,包括在初始化参数文件中设置、通过`ALTER SYSTEM`语句全局设置、通过`ALTER SESSION`语句为当前会话设置以及使用`ORADEBUG`命令针对特定进程或会话设置。 ##### 1. 在初始化...
- 示例:`ORADEBUG SET_OSPID <spid>` 和 `ORADEBUG DUMP <dump> <level>`。 #### 事件类型与结构 Oracle 11g中引入了两种类型的事件: 1. **简单事件**:基本的事件类型,适用于大多数常规的监控需求。 2. **...
- 例如:`oradebug sharedpool 5`、`oradebug sharedpool 6`等。 5. **释放指定实例的共享内存段** - 确认问题实例占用的共享内存段后,可以使用`ipcrm -m`命令释放相应的内存段。 #### 结论 通过对单实例和多...
2.event = '604 trace name processstate,level 10'(INIT.ORA entry) 3.oradebug setospid 进程ID oradebug dump processstate 10; <br>系统状态转储可以用以下两种办法: system state dumps:...
2. **启动追踪**:一旦找到OSPID,就可以使用`oradebug`命令来初始化追踪。假设需要追踪的OSPID是9834,以`sysdba`身份登录SQL\*Plus并执行以下命令: ```sql CONNECT / AS SYSDBA ORADEBUG SET OSPID 9834 ...
Oracle数据库调优是提升系统性能的关键技术,尤其在企业级应用中,Oracle数据库的高效运行对业务至关重要。本文主要探讨了几个关键的调优策略,包括外部环境调整、Row re-sequencing以减少磁盘I/O,以及Oracle SQL...
oradebug工具可以帮助我们更深入地了解系统状态和锁定情况。例如,可以使用以下命令设置会话跟踪并获取系统状态: ```bash oradebug setmypid oradebug unlimit oradebug dumpsystemstate ``` 通过这些命令,可以...
除了这些标准方法外,Oracle还提供了ORADEBUG等其他高级追踪技术。本文将详细介绍Oracle中的追踪机制,包括追踪文件的位置、不同版本之间的差异,以及如何使用追踪功能来解决问题。 #### 二、追踪文件的位置 #####...
SQL> oradebug dumpsystemstate 266 SQL> oradebug tracefile_name ``` 这些命令可以帮助收集到异常时刻的hanganalyze和system state信息。 ##### 3.4 问题在收集信息后自动解决 有趣的是,在收集了上述信息之后...
通过在SQL*Plus中使用`ORADEBUG SETMYPID`和`ORADEBUG IPC`命令,可以获取关于SGA的详细信息,进一步分析和优化数据库性能。 总结来说,SGA内部涉及了多种内存管理机制和数据结构,理解这些概念对于优化Oracle...
oradebug Event 10046 trace name context forever, level 12 wait 10 minutes, disable the event oradebug Event 10046 trace name context off ``` 其中 `X` 替换为步骤 1 中查询得到的进程 ID。 3. 分析...
3. **集群级**:针对Oracle RAC环境设计,利用`ORADEBUG setmypid`, `ORADEBUG setinstall` 和 `ORADEBUG-gdef hanganalyze<level>`组合命令,旨在收集整个集群范围内的会话信息。这对于诊断跨节点的hang问题尤为...