Database Administrator
Showing posts with label
performance tuning
.
Show all posts
Showing posts with label
performance tuning
.
Show all posts
Thursday, February 14, 2013
AWR Analysis
›
http://www.toadworld.com/Experts/GuyHarrisonsImprovingOraclePerformance/ResolvingOracleContention/tabid/257/Default.aspx http://www.dba-or...
Trace Connect Hang at startup
›
http://www.oracleangels.com/2011/05/useful-tracing-commands-oradebug-oracle.html -- There is an option that is helpful when the databse i...
Top Buffer Gets
›
set serverout on size 1000000 declare top5 number; text1 varchar2(4000); x number; len1 number; Cursor c1 is select buffer_gets,sub...
CPU taking SQL
›
If you noticed that a session is using too much CPU, you can identify the actions performed by that session using top and Explain Plan. So...
temporary tablespace usage
›
– Listing of temp segments.– SELECT A.tablespace_name tablespace, D.mb_total, SUM (A.used_blocks * D.block_size) / 1024 / 1024 mb_used, ...
Top 30 I/O Intensive SQL Statements Identification
›
-- Top 30 I/O Intensive SQL Statements Identification : top30iosql.sql set linesize 80 set pagesize 58 set heading on set serveroutput ...
Tuesday, July 10, 2012
RAID recommendation for Oracle Database
›
Redo logs are extremely write intensive, and high bandwidth storage such as SSD are ideas for relieving I/O bottlenecks. Also, online redo...
Tuesday, July 3, 2012
insert update without unod redo
›
Is it possible to issue an INSERT statement or an UPDATE statement without generating Redo Logs and Undo? This UNDO information itself ge...
Analyze Fast
›
exec DBMS_SCHEDULER.drop_job ('analyze'); BEGIN DBMS_SCHEDULER.create_job ( job_name => 'analyze', ...
SESSION_CACHED_CURSORS
›
alter system set SESSION_CACHED_CURSORS=500 scope=spfile; If an application repeatedly issues parse calls on the same set of SQL stateme...
Thursday, June 7, 2012
›
Following Steps to perform. SYSAUX tablespace SELECT * FROM dba_jobs WHERE SCHEMA_USER='SYSMAN'; SELECT * FROM SYSMAN.mgmt_m...
Friday, May 18, 2012
Resolving common Oracle Wait Events
›
Resolving common Oracle Wait Events Wait Event Possible Causes Actions Remarks db file sequential reads Use of an unsel...
›
Home
View web version