Arquivo da categoria: INDEX TUNING

RECOMENDAÇÕES

Recomendações Área Ação Nivel Esforço Tempo Ganho Previsto Notas Metalink Reescrever as consultas e DMLs mais ofensivas des 5 5 2 meses Performance, desempenho,redução de consumo de IO, CPU e memória. Note:100960.1 Note:62590.1 Note:199083.1 Eliminar os deadlocks da aplicação (criando … Continuar lendo

Publicado em FAST DIAG, I/O TUNING, INDEX TUNING, ORACLE 11gR2, RECOMENDAÇÕES, SHARED POOL | Marcado com , , , , , , , , , , , , , , , , , , , , , , , , , | Deixe um comentário

Como verificar fragmentação de índices

Publicado em INDEX TUNING, ORACLE 11gR2, PLSQL SCRIPTS | Marcado com , | Deixe um comentário

understanding 9i Segment-Level Statistics

to understand new Segment-Level Statistics feature. SCOPE & APPLICATION ——————- Application DBA and Performance DBA’s Segment-Level Statistics ————————— This is a new feature introduce in 9.2. We can now gather segment-level statistics to find out the performance problems associated with … Continuar lendo

Publicado em INDEX TUNING, PERFORMANCE, PLSQL TUNING | Deixe um comentário

USING ORACLE SCRIPTS TO TUNE INDEX

Problem Description: ==================== You have many indexes on your tables. You are wondering if you are making the best use of indexing. You need to know how to pick the best columns to index. You need to know how to … Continuar lendo

Publicado em INDEX TUNING, PERFORMANCE, PLSQL TUNING | Deixe um comentário

TAMANHO DO ÍNDICE E OUTROS SEGMENTOS

select segment_name, sum(bytes)/1024 as MB from dba_segments where segment_name in( ‘PAY_STATISTICS’, ‘ICO_RQST_MULTI’, ‘INV_NBR_POOL’, ‘LOG_OPER_CONFIG’ ) group by segment_name   select segment_name, sum(bytes)/1024 as MB from dba_segments where segment_name in( ‘CTT_TDRS_GSM’, ‘AQ$_HLR_REQ_QT51_T’, ‘HLR_ASR_QT51’, ‘CTT_CDRS’, ‘PAY_PLAFOND_CONFIG’, ‘CAR_PLAFOND_UNIT’, ‘PRV_PLATAFORM_IMPACT’, ‘INSTALLED_PLATFORM’, ‘PRV_HLR_SERVERS’) group by … Continuar lendo

Publicado em INDEX TUNING | Deixe um comentário

How to Monitor the Usage of Indexes

This script will monitor the usage of indexes on the database. Product Name, Product Version Oracle Server, 7.3 to 10.0 Platform Platform Independent Date Created 09-Jul-1997 Instructions Execution Environment: SQL, SQL*Plus Access Privileges: Requires DBA access privileges to be executed. … Continuar lendo

Publicado em INDEX TUNING | Marcado com | Deixe um comentário

SCRIPT TO CHECK FOR FOREIGN KEY LOCKING ISSUES

Abstract SCRIPT TO CHECK FOR FOREIGN KEY LOCKING ISSUES Product Name, Product Version Rdbms:07.0.X – 08.XX Platform Platform Independent Date Created 07-NOV-2002 Instructions Execution Environment: <SQL, SQL*Plus> Access Privileges: If run as owner of objects no special priveleges required Usage: … Continuar lendo

Publicado em INDEX TUNING, PLSQL SCRIPTS, PLSQL TUNING | Deixe um comentário

Pre-Loading Oracle Text indexes into Memory

Pre-Loading Oracle Text indexes into Memory Introduction Oracle Text indexes are stored in Oracle Database relational tables. These tables normally reside on disk. Systems with large memory configurations generally benefit greatly from Oracle caching – a second or subsequent search … Continuar lendo

Publicado em BUFFERS, INDEX TUNING, PLSQL SCRIPTS, PLSQL TUNING, SGA | Marcado com | Deixe um comentário

Identifying unused indexes in Oracle9i

PURPOSE ——- The purpose of this document is to explain how to find unused indexes using the new feature in Oracle9: “Identifying Unused Indexes” via ALTER INDEX MONITORING USAGE, as mentioned in Oracle9i Database Administrator’s Guide, Chapter 11. The clause … Continuar lendo

Publicado em INDEX TUNING, PARTICIONAMENTO, PLSQL SCRIPTS | Marcado com | Deixe um comentário

ÍNDICES BASEADOS EM FUNÇÃO (FUNCTION INDEXES)

SEGUE ALGUNS EXEMPLOS DE ÍNDICES BASEADOS EM FUNÇÃO. create unique index product_index on product_id ( decode(enabled, ‘Y’, id , null)); CREATE INDEX idx_person_upper_given_names ON person (UPPER(given_names)); CREATE INDEX idx_person_upper_last_name ON person (UPPER(last_name)); create index my_objects_name on my_objects (lower(object_name)); CREATE INDEX … Continuar lendo

Publicado em INDEX TUNING, TUTORIAL | Marcado com , , , , , , , , , , , | Deixe um comentário

Exemplos de tabelas organizadas por índice

Abaixo estão alguns exemplos de como criar tabelas organizadas por indice   CREATE TABLE my_iot (id INTEGER PRIMARY KEY, value VARCHAR2(50)) ORGANIZATION INDEX; CREATE TABLE my_iot (id INTEGER PRIMARY KEY, value VARCHAR2(50)) ORGANIZATION INDEX;  CREATE TABLE ALT_DOC (TIP_DOCUMENT CHAR(1),NUM_DOCUMENTO number(9) … Continuar lendo

Publicado em INDEX TUNING, PLSQL SCRIPTS | Marcado com , , , , , , , , , | Deixe um comentário

Understanding Indexes

Publicado em INDEX TUNING | Marcado com | Deixe um comentário

Leitura de índices B-Tree: Alteração do Clustering Factor

Leitura de índices B-Tree: Alteração do Clustering Factor  POR LUÍS MARQUES, ÀS 20:47 | COMENTAR Como já tinha explicado antes, o CF (vou me referir a partir de agora como CF, para me facilitar) é basicamente uma métrica que compara a ordem no … Continuar lendo

Publicado em INDEX TUNING, PLSQL TUNING | Marcado com | Deixe um comentário

optimizer_index_cost_adj

Oracle optimizer_index_cost_adj and SQL Performance Oracle Tips by Burleson Consulting As you may know, Oracle provides several parameters that can adjust the behavior of the CBO to change the internal costing for different types of operations:  optimizer_index_caching optimizer_index_cost_adj optimizer_max_permutations optimizer_search_limit … Continuar lendo

Publicado em INDEX TUNING, PARAMETROS, PLSQL TUNING | Marcado com | Deixe um comentário