evan-mills
Uploaded by
9 SLIDES
236 VUES
90LIKES

Advanced PL/SQL Programming: Indexes and Performance Optimization in Oracle 10g

DESCRIPTION

Explore the nuances of advanced PL/SQL programming, focusing on indexing and performance enhancement techniques in Oracle 10g. Learn about the implications of indexes on SELECT, INSERT, UPDATE, and DELETE operations, and understand why not every table should be indexed. Discover how functions and cursor-for-loops can simplify coding practices, enhancing efficiency without the complexity of traditional cursor management. This guide is essential for optimizing database performance while maintaining manageable code.

1 / 9

Download Presentation
Télécharger la présentation

Advanced PL/SQL Programming: Indexes and Performance Optimization in Oracle 10g

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. More Advanced PL/SQL Programing

  2. Agenda • Indexes • Not PL/SQL but a RBMS performance enhancement • PL/SQL • Functions • Cursor For Loops

  3. Indexes Table Table Index on Color Impacts on:SELECT? INSERT? UPDATE? DELETE? Database object which provides capability to speed up the search process. Guide to Oracle 10g

  4. Indexes in SQL Guide to Oracle 10g

  5. Why not Index Everything? Every Index makes one of those “index tables” If you have 10 indexes on a table, an INSERT, DELETE or UPDATE needs to write to that table + the 10 index tables. Indexing speeds up reads at the expense of writes. Guide to Oracle 10g

  6. Functions Functions are stored procedures which return a value. Functions are not executed like stored procedures. Instead, they are called from within SQL or PL/SQL. SELECT myfunction() … Guide to Oracle 10g

  7. Functions Guide to Oracle 10g

  8. Cursor For Loops Easier to implement cursors. Simplified – no open, close, fetch or exit conditions! If you need to use a cursor, use these. Guide to Oracle 10g

  9. Questions

More Related
SlideServe
Audio
Live Player
Audio Wave
Play slide audio to activate visualizer