> 文章列表 / Page 329

2008-04-19

EVENT 10235:"check memory manager internal structures"

Event:10235 ~~~~~~~~~~~ Version/Use: 7.0 - 10.1.X Check memory manager internal structures. 7.0 - 10.1.X "Check memory manager internal structures" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~…
#POST 2 MIN READ
2008-04-19

EVENT:10052 "Stop SMON from cleaning up obj$"

Text:   Stop SMON from cleaning up obj$ ——————————————————————————- NOTE: Events should NEVER be set by customers unless advised to do…
#POST 1 MIN READ
2008-03-25

Script to Detect Tablespace Fragmentation

create table SPACE_TEMP ( TABLESPACE_NAME CHAR(30), CONTIGUOUS_BYTES NUMBER) / declare cursor query is select * from dba_free_space order by tablespace_name,…
#POST 2 MIN READ
2008-03-01

利用dbms_system包加速imp导入数据时的索引建立

imp数据导入时往往大多数的时间都消耗在了索引建立上,我们可以通过为导入会话设置一系列session级别的参数来加速索引的建立: begin dbms_system.set_int_param_in_session(&sid, &serial, 'db_file_multiblock_read_count', 64); dbms_system.set_int_param_in_session(&sid, &serial, 'sort_area_size', 209715200); dbms_system.set_int_param_in_session(&sid, &serial, '_sort_multiblock_read_count', 64); end; 注意在PGA自动管理模式下(即当workarea_size_policy=AUTO时),自行指定的sort_area_size参数将无法生效。MOS上Bug 8939043叙述了目前dbms_system包的功能仅能修改session级别的布尔和数值类型参数,而无法修改字符串类型参数的问题;所以目前也还无法动态修改其他会话中的workarea_size_policy参数(虽然这个参数在session/system级别是可以动态修改的)。
#POST 1 MIN READ
2008-02-25

Learning 11g New Background Processes

New Background Processes In 11g *  ACMS (atomic controlfile to memory service) per-instance process is an agent that contributes to…
#POST 10 MIN READ
2007-06-30

Know more about Oracle Latches

Two purposes of latches were:Serialize Execution,Serialize Access Match the characteristics with latches and enqueues. Several modes of access                   Enqueue FIFO…
#POST 7 MIN READ
2007-06-30

Know more about Buffer Cache and Latch

We can examine X$BH table to obtain buffer header information,The BH stands for buffer header. Structures that maintain a list…
#POST 3 MIN READ
2007-06-30

Script:To Report Information on Indexes

Reports index fragmentation statistics: ========== Script #1: ========== SET ECHO off REM NAME: TFSIFRAG.SQL REM USAGE:"@path/tfsifrag schema_name index_name" REM ------------------------------------------------------------------------…
#POST 5 MIN READ
2007-06-29

Know More About Libarary Cache and Latches

Stored objects And Transient objects are stored in the library cache, neither Temporary objects nor Permanent objects. The library cache…
#POST 2 MIN READ