`
itspace
  • 浏览: 978421 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
社区版块
存档分类
最新评论

Tracing the Database Configuration Assistant (DBCA)

阅读更多
To provide verbose output for DBCA, tracing can be enabled to provide additional
output.  To turn on tracing from 9i to 10g:

1. Do a copy of the original dbca file in $ORACLE_HOME/bin. For example:

引用
   cp $ORACLE_HOME/bin/dbca $ORACLE_HOME/bin/dbca.ori


2. vi the dbca file in the $ORACLE_HOME/bin directory.

3. At the end of the file, look for the following line:

引用
   # Run DBCA
   $JRE_DIR/bin/jre -DORACLE_HOME=$OH -DJDBC_PROTOCOL=thin -mx64m -classpath
   $CLASSPATH oracle.sysman.assistants.dbca.Dbca $ARGUMENTS


4. Add the following just before the -classpath in the '$JRE_DIR' line:


引用
   -DTRACING.ENABLED=true -DTRACING.LEVEL=2



5. At the end of the dbca file, the string should now look like this:
引用

   # Run DBCA
   $JRE_DIR/bin/jre -DORACLE_HOME=$OH -DJDBC_PROTOCOL=thin -mx64m
   -DTRACING.ENABLED=true -DTRACING.LEVEL=2 -classpath $CLASSPATH
   oracle.sysman.assistants.dbca.Dbca $ARGUMENTS


The -DTRACING.LEVEL was missing a space after the 2 so that it looks
like 2-classpath.

6. To trace run:

引用
   [opcbsol1]/u01/home/usupport> dbca > dbca.out &


The output will be written to the dbca.out file.


In 10.2  you can add the -DDEBUG flag  so that you get the debug information
given to you interactively
引用

"C:\oracle\product\10.2.0\racdb\jdk\jre\BIN\JAVA" -DDEBUG -DORACLE_HOME="%OH%" -
DJDBC_PROTOCOL=thin -mx128m oracle.sysman.assistants.dbca.Dbca %*



BUT in 10.2 you should already have the trace information written automatically
to the following location

引用
$ORACLE_HOME/cfgtoollogs/dbca/trace.log


In 11g, the location of trace.log has changed to:

引用
$ORACLE_BASE/cfgtoollogs/dbca//trace.log
分享到:
评论

相关推荐

    Ray Tracing in One Weekend, Ray Tracing The Next Week,

    Ray Tracing in One Weekend, Ray Tracing The Next Week, Ray Tracing The Rest of Your Life 三本关于射线追踪的资料,简单易懂,容易上手。并附有源程序

    Ray Tracing The Rest of Your Life

    本书《Ray Tracing The Rest of Your Life》由Peter Shirley撰写,涉及光线追踪技术的深入探讨。书中假定读者已经掌握了基础的光线追踪技术,并将进一步深入到光线追踪技术的数学原理中,目标是让读者能够理解和掌握...

    Ray Tracing from the Ground Up 光跟踪算法技术(英文版) part2

    Ray Tracing from the Ground Up 光跟踪算法技术 (英文版) Kevin Suffern 好书一枚,非常详实的讲解了一个ray tracer怎么写,从原理到实践,对应网站上面还提供了完整的立即可编译运行的代码。 part1: ...

    Ray Tracing_ the Rest of Your Life

    标题“Ray Tracing_ the Rest of Your Life”暗示了本书是对于光线追踪技术深入研究的后续课程。在给出的描述中,作者提到了本书是继《Ray Tracing in a Weekend》之后的第三部作品,这表明这三本书构成了一个系列,...

    Ray Tracing The Next Week

    《Ray Tracing The Next Week》是《Ray Tracing in a Weekend》的进阶版本,它涵盖了光线追踪技术中更为深入和高级的话题,包括运动模糊的处理。在介绍具体的运动模糊之前,有必要先了解一些基础概念和关键技术。 ...

    Ray_Tracing_from_the_Ground_Up 光线追踪基础 分卷1(共2卷)

    Ray_Tracing_from_the_Ground_Up 光线追踪基础 分卷1(共2卷) 和实时碰撞检测算法技术相关

    Ray Tracing from the Ground Up 光跟踪算法技术.part1(2部分)

    Ray Tracing from the Ground Up 光跟踪算法技术 Kevin Suffern 好书一枚,非常详实的讲解了一个ray tracer怎么写,从原理到实践,对应网站上面还提供了完整的立即可编译运行的代码。

    Peter Shirley Ray Tracing系列合集

    Peter Shirley Ray Tracing合集(包含Ray Tracing in One Weekend, Ray Tracing the Next Week, Ray Tracing The Rest of Your Life, Realistic Ray Tracing)

    Ray Tracing(光线追踪)的三本英文参考文献(PDF版)

    1. **《Ray Tracing: The Rest of Your Life》**:这本书可能涵盖了光线追踪的基础概念,包括如何构建场景、定义材质、计算光照以及反射和折射。作者可能详细解释了如何追踪从相机到场景物体的主光线,并追踪由这些...

    《Ray Tracing From The Ground Up》Chapter3

    本书作者给的代码实现中包含了很多类,所以理解起来有点困难。并且因为作者给的代码不能直接运行(编译会报错),我重新按照作者的结构实现了一下,不过去掉了Point3D这个类,所有三维的点都用Vector3D表示。...

    Ray Tracing_ The Next Week.pdf

    文件名为"Ray Tracing: The Next Week",暗示它是继"Ray Tracing In One Weekend"之后的内容。 从文件内容可以看出,该文档详细介绍了光线追踪中的一些高级技术,包括纹理、体积(如雾气)、矩形对象、实例化、灯光...

    Ray Tracing - The Next Week

    标题《Ray Tracing - The Next Week》和描述中提到的《Ray Tracing in a Weekend》是由Peter Shirley所著,这本书是计算机图形学领域入门的一本经典书籍,适合读者通过实践来学习光线追踪技术。此系列书籍基于一个...

    Dynamic Tracing Guide PDF

    DTrace is a comprehensive dynamic tracing framework for the illumos™ Operating System. DTrace provides a powerful infrastructure to permit administrators, developers, and service personnel to ...

    Ray Tracing From The Ground Up

    Using numerous examples that illustrate the ray-tracing concept and processes in detail, the author presents a ray-tracer design and sample code that allows for extensibility, efficiency of the ...

    Distribution Ray Tracing: Theory and Practice

    Distribution ray tracing uses Monte Carlo integration to solve the rendering equation. This technique was introduced by Cook et. al, and was notable because of its simplicity and its ability to ...

    opentracing-util-0.33.0-API文档-中文版.zip

    赠送jar包:opentracing-util-0.33.0.jar 赠送原API文档:opentracing-util-0.33.0-javadoc.jar 赠送源代码:opentracing-util-0.33.0-sources.jar 包含翻译后的API文档:opentracing-util-0.33.0-javadoc-API...

    chrome://tracing说明

    Chrome Tracing 打开 about:tracing 页面,Chrome 提供的底层的追踪工具允许我们深度了解 V8 的解析以及其他时间消耗情况。V8 也提供了 详细的指南 来介绍如何使用这个功能。

    Tracing the Flow of Policy Ideas in Legislatures.pdf

    ### 知识点生成 #### 一、政策思想在立法中的流动分析方法 **知识点概述:** 本文介绍了一种新的研究方法,旨在追踪立法过程中政策思想的演变与传播。传统上,学者们关注的是法案本身的进展,而忽视了其中所包含...

    opentracing-noop-0.33.0.jar

    opentracing-api

Global site tag (gtag.js) - Google Analytics