[20190522]How to get dump or list parameters set at session level.txt 1.环境:SCOTT@book> @ ver1PORT_STRING                    VERSION        BANNER------------------------------ -------------- -----------------------------------------------------------…
 https://berxblog.blogspot.com/2015/01/oradebug-doc-12102.html   this is just an online docu of ORADEBUG DOC in 12.1.0.2.The general comments from Tanel Poder apply to this version as well. SQL> oradebug doc Internal Documentation *******************…
In This Document Section 1: Common Database Initialization Parameters For All Releases Section 2: Release-Specific Database Initialization Parameters For Oracle 10g Release 2 Section 3: Release-Specific Database Initialization Parameters For Oracle 1…
In This Document Section 1: Common Database Initialization Parameters For All Releases Section 2: Release-Specific Database Initialization Parameters For Oracle 10g Release 2 Section 3: Release-Specific Database Initialization Parameters For Oracle 1…
https://blogs.msdn.microsoft.com/askjay/2009/12/29/basic-debugging-concepts-and-setup/ You can create a memory dump of the SQL Server process space in several ways.  There are many external tools that can help you accomplish this such as userdump.exe…
通常会用到以下两个命令:1.'alter session'命令用来dump redo日志的文件头2.'alter system dump logfile'命令用来dump redo文件的内容 以上命令也可以对归档日志进行dump.输出结果存放在session的trace文件中. 可以根据以下方式对redo日志进行dump:(1) To dump records based in DBA (Data Block Address) 语法: alter system dump logfile '<fi…
IBM AIX Java 1. topas 命令定位 CPU 使用高的进程,比如下面 PID 614852 Name            PID  CPU% java         614852  23.9 java         450806  20.5 2. 使用命令 ps -mp <PID> -o THREAD 定位 CPU 使用高的线程 TID 比如下显示线程 (TID)11219165 消耗了 22% CPU.  把 11219165 换成 16 进制得到 AB30DD ps…
每次电脑重装都得烦心,要把庞大的IDE重新配置一次,正准备安装Visual Stdio 2010,上网找镜像的时候发现,Visual Stdio 2013推出了Community版,不仅没有lite掉,而且还全免费!这里Post个官方的镜像下载地址先(Visual Stdio Community 2013),破解版就别用啦,反正不是商用,社区版足矣. 既然安装好了最新版的VS,自然要来弄点东西解解馋,最近一直在做RFID的项目,正需要一个Windows版的dump转txt工具,虽说有Mifare…
Oracle的索引是以平衡树的方式组织存储的:保存的是索引列的值,以及该行的rowid的一部分(文件号,块号,行号) 下面我们通过例子来了解一下: 1,create table test(id int,name varchar2(20)) insert into test values(1,'A'); insert into test values(2,'B'); begin for i in 3..2000 loop insert into test values(i,'t'||i); end…
iot表测试: 在create table语句后面使用organization index,就指定数据表创建结构是IOT.但是在不指定主键Primary Key的情况下,是不允许建表的. create table t100 (id int primary key,a1 char(10),a2 char(10))organization index; SQL> select object_name,object_id from user_objects; OBJECT_NAME OBJECT_ID…