Collections in Oracle PLSQL

แชร์
ฝัง
  • เผยแพร่เมื่อ 8 พ.ย. 2024

ความคิดเห็น • 38

  • @CB-xk6ce
    @CB-xk6ce 3 ปีที่แล้ว +5

    This was even better/clearer than the official Oracle tutorials, thanks!

  • @rexjuggler19
    @rexjuggler19 3 ปีที่แล้ว +4

    This is the best tutorial series I have found for PLSQL. I've been studying and searching for quite a while. I have 3 books on PLSQL. This tutorial is perfect. Each subject is covered in perfectly sized modules. Good job! I hope you continue to put together these types of tutorials.

  • @mmohan692
    @mmohan692 2 ปีที่แล้ว

    Ur my god sir .ur video made me to get a job in one of the mng company

  • @sushmitapriya2250
    @sushmitapriya2250 6 ปีที่แล้ว +2

    This is what I was searching since last 2-3 days. Thanks for sharing your knowledge !!

  • @affanpk002
    @affanpk002 5 ปีที่แล้ว +2

    Best explanation for collection with practical example..keep it up 👍

  • @vijayrajjakhmola4615
    @vijayrajjakhmola4615 3 ปีที่แล้ว +1

    best video to understand collection , but sir please explain "Associative Array" . Thanks so much

  • @krishnad9847
    @krishnad9847 7 ปีที่แล้ว +3

    Hi, very good explanation. Can you provide example for Associative arrays as well and also could you explain when to use them, I mean among 3 collections when to use when.

  • @kumar-bi1to
    @kumar-bi1to 2 ปีที่แล้ว

    Excellent. Thanks for sharing

  • @mohan1958
    @mohan1958 3 ปีที่แล้ว

    Hi! Thanks , Your videos make it easy to grasp the subject, good job!

  • @jayakrishnachanumuru
    @jayakrishnachanumuru 2 หลายเดือนก่อน

    Thank you bro

  • @KabergOficial
    @KabergOficial 4 ปีที่แล้ว +1

    can I put a variable in place of 5? Exp: Declare v_qtde integer := 5; type t_array1 is varray(v_qtde)......... !but this variable being of the type number or integer plsql complains that it is not integral.

  • @prabhakarraju1523
    @prabhakarraju1523 4 ปีที่แล้ว

    very good explanation

  • @RAMPRASAD-sv7is
    @RAMPRASAD-sv7is 6 ปีที่แล้ว

    Very Good Explanation.Please Upload the Videos for Bulk collect and ref cursors

  • @mauricioroldanramirez821
    @mauricioroldanramirez821 11 หลายเดือนก่อน

    Could you share the link of the second part for the video Collection functions? please? I could not fid it

  • @satya3233
    @satya3233 6 ปีที่แล้ว

    Very Good Explanation,Upload a Video Of regular expression

  • @vijayrajjakhmola4615
    @vijayrajjakhmola4615 3 ปีที่แล้ว

    nice , now can understand clearly , what is collection, but i think "Associative Array" not described here

  • @adwaitsharma8421
    @adwaitsharma8421 5 ปีที่แล้ว

    Thank you bro!! Really helpful 😊😊👌👌

  • @sujith.g8778
    @sujith.g8778 2 ปีที่แล้ว

    Bro how to get values for varray from user (dynamically) in oracle

  • @divyaarora2887
    @divyaarora2887 5 ปีที่แล้ว +1

    Hi! You missed on the topic Associative array.. It'd have been better to include in this video itself so that we could have had a comparative study and understand the concepts better.

  • @deepaktheproudindian
    @deepaktheproudindian 4 ปีที่แล้ว

    Can anchored data types be used in temporary tables?

  • @SudhirBhajnawale
    @SudhirBhajnawale 6 ปีที่แล้ว

    Hi,
    Thanks a lot sir, well explained .

  • @ptnaidu525
    @ptnaidu525 6 ปีที่แล้ว

    Super explanation, thanks sir

  • @kumarmacha
    @kumarmacha 2 ปีที่แล้ว

    Hi Can you please help in following.
    How to assign the values as following
    student_ids(1).st_id := 5;
    student_ids(1).name := 'Kumar';
    student_ids(1).marks := 50;

  • @rakeshk681
    @rakeshk681 3 ปีที่แล้ว

    Hi ,
    Where is third type Associative Array/Index by Table ? I Missed ?

  • @sharmisthasahoo5066
    @sharmisthasahoo5066 4 ปีที่แล้ว

    Hi ,can you please upload the associative array with bulk collect explanation asap?

  • @bsramkrishna3980
    @bsramkrishna3980 2 ปีที่แล้ว

    How to fetch no of records from cursor to collection?

  • @musandlala7991
    @musandlala7991 4 ปีที่แล้ว

    Brilliant

  • @HalimilFathi
    @HalimilFathi 5 ปีที่แล้ว

    DECLARE
    TYPE ename_table_type IS TABLE OF
    employees.last_name%TYPE
    INDEX BY PLS_INTEGER;
    TYPE hiredate_table_type IS TABLE OF DATE
    INDEX BY PLS_INTEGER;
    ename_table ename_table_type;
    hiredate_table hiredate_table_type;
    BEGIN
    ename_table(1) := 'CAMERON';
    hiredate_table(8) := SYSDATE + 7;
    IF ename_table.EXISTS(1) THEN
    INSERT INTO ...
    ...
    END;
    /
    Associate Array with example this must be an error way? Thank you so much

  • @satvinderbhangu361
    @satvinderbhangu361 4 ปีที่แล้ว

    My only question is why we need array if we have cursor . We can same thing do with cursor. Can you tell me please what is main purpose of array and why we use in plsql. Thanks

    • @sriramkolanji2158
      @sriramkolanji2158 4 ปีที่แล้ว +2

      Hi Satvinder,
      I'm glad you asked this question.
      If we use Cursor instead of an Array, The excecution control will have to switch between Program area to CURSOR area to fetch the each records (called context switch)
      and as a result, it will reduce the programming performance and also it's not advisible when it comes to handle larger amount of data.
      If we use bulk collect/collection/Array datatype then, it will contain bulk data within a program area and execute it until the program finishes.
      I hope it clarifies you.
      Thanks.

    • @kumar-bi1to
      @kumar-bi1to 2 ปีที่แล้ว

      Thanks for the valid questions and superb answers

  • @Suryavishaal
    @Suryavishaal 5 ปีที่แล้ว

    I didn't understood, why you have declare array here sir??

  • @KrishnaPaneri
    @KrishnaPaneri 6 ปีที่แล้ว

    Thanks

  • @avinashsripathi2873
    @avinashsripathi2873 ปีที่แล้ว

    how to insert a record in collections in plsql

  • @Sn46312
    @Sn46312 5 ปีที่แล้ว +2

    Hi, you didn't explain the important topic i.e., Associate Array with example.