Oracle
  Home arrow Oracle arrow Page 4 - Associative Arrays in Oracle PL/SQL: I...
Dev Shed Forums 
Administration  
Apache  
BrainDump  
DHTML  
Flash  
Java  
JavaScript  
Multimedia  
MySQL  
Oracle  
Perl  
PHP  
Practices  
Python  
Reviews  
Security  
Style-Sheets  
Web Services  
XML  
Zend  
Zope  
Forums Sitemap 
IBM® developerWorks 
Dedicated Servers 
E-Commerce Hosting 
Linux Web Hosting 
Managed Hosting 
Small Business Hosting 
Download TestComplete 
VPS Hosting 
Weekly Newsletter

 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid 
Request Media Kit
Contact Us 
Site Map 
Privacy Policy 
Support 
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
ORACLE

Associative Arrays in Oracle PL/SQL: Introduction
By: Jagadish Chatarji
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 5 stars5 stars5 stars5 stars5 stars / 62
    2006-03-13

    Table of Contents:
  • Associative Arrays in Oracle PL/SQL: Introduction
  • Associative Arrays in Oracle PL/SQL: a simple example
  • Associative Arrays in Oracle PL/SQL: traversing consecutively using a FOR loop
  • Associative Arrays in Oracle PL/SQL: counting number of elements using FOR loop

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      Del.ici.ous Digg
      Blink Simpy
      Google Spurl
      Y! MyWeb Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article
     
     
     
    ADVERTISEMENT

    Stay one step ahead of the competition. Evaluate and give feedback on some of the hottest web development tools on the market today. Make your opinion heard! Click Here

    Associative Arrays in Oracle PL/SQL: Introduction - Associative Arrays in Oracle PL/SQL: counting number of elements using FOR loop
    (Page 4 of 4 )

    Let us extend our discussion further to count the number of elements available in the “Associative Array.”  Let us work with the following example:

    declare
          type year_type is table of number index by binary_integer;
          year_sales year_type;
          tot_sales   number := 0;
          i           number;
          c           number := 0;
    begin
          year_sales(1990) := 34000;
          year_sales(1991) := 45000;
          year_sales(1992) := 43000;
          year_sales(1996) := 13000;
          year_sales(1998) := 53000;

          for i in 1990..2000
          loop
                if year_sales.exists(i) then
                      tot_sales := tot_sales + year_sales(i);
                      dbms_output.put_line('Sales of ' || i || ': '
    || year_sales(i));
                      c := c + 1;
                end if;
          end loop;
          dbms_output.put_line('Total sales: ' || tot_sales);
          dbms_output.put_line('Avg sales: ' || (tot_sales/c) );

    end;

    I modified the example to include “average sales.”  The concept of “Average” works based on the “number of items” available.  How do we keep track of the “number of elements” within the “Associative Array”? 

    I simply defined my own counter variable, “c,” to count the number of elements available in the “Associative Array.”  It really worked.

    Summary

    Are you satisfied with the techniques I implemented here?  A beginner may say YES.  But a more experienced programmer would never agree (at least to 100%) to any of the above methods.  I should also agree with them.  Why and what is the problem in working with the above methods?

    In all of the previous scenarios, we should definitely know (or expect) the “least possible key” and the “highest possible key,” which is ridiculous.  And that isn't the only problem. If I have huge gaps in between “keys,” the loop gets iterated unnecessarily (degrading the performance).  This is another major disadvantage of using the above method.

    My next article in this series will address all of these issues, and we shall further extend the series to a more structural, efficient and modular way of working with “Associative Arrays.”  Don’t forget to keep an eye on this website for the next article (or simply sign up for the newsletter).  Any comments, suggestions, feedback, bugs, errors, enhancements are highly appreciated at jag_chat@yahoo.com


    DISCLAIMER: The content provided in this article is not warranted or guaranteed by Developer Shed, Inc. The content provided is intended for entertainment and/or educational purposes in order to introduce to the reader key ideas, concepts, and/or product reviews. As such it is incumbent upon the reader to employ real-world tactics for security and implementation of best practices. We are not liable for any negative consequences that may result from implementing any information covered in our articles or tutorials. If this is a hardware review, it is not recommended to open and/or modify your hardware.

       · Hai everybody. This is going to be another series on working with "Associative...
       · On the positive side, the article is pretty clear on using sparse arrays in PL/SQL....
       · Hello, I may be wrong when I said "I am confident that it works in 7.3 as well". ...
     

       

    ORACLE ARTICLES

    - Tuning PL/SQL Code
    - Debugging PL/SQL Code
    - Testing PL/SQL Code
    - Working With PL/SQL Code
    - Conditional Compilation for Oracle Database ...
    - Compile-Time Warnings for Oracle DB 10g
    - Compiling PL/SQL Code for an Oracle Database
    - Troubleshooting PL/SQL Code
    - Managing PL/SQL Code
    - Data Manipulation and More for HTML DB Appli...
    - Oracle Database Fundamentals
    - Adding Processes to HTML DB Applications
    - Adding Computations, Processes, and Validati...
    - Sub-templates and More with Oracle HTML DB
    - Focusing on Templates in Oracle HTML DB

     
    Accelerating Trading Partner Performance
     
    Competing on Analytics
     
    Cost Effective Scaling with Virtualization and Coyote Point Systems
     
    Five Checkpoints to Implementing IP Telephony
     
    Hosted Email Security: Staying Ahead of New Threats
     




    © 2003-2008 by Developer Shed. All rights reserved. DS Cluster 2 hosted by Hostway