COL1: Introduction to Collections

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

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

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

    Hi Steven, I appreciate your time to upload these tutorials, I suggest you add english subtitles to videos for non-english speakers people. Thanks!!!

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

    Stephen you are so great. From your video only I understood the logic of limit clause in bulk colectt. You are amazing bro. Thanks to youtube.

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

    Steven Sir, you are Awesome but Pls also Provide Subtitle I miss some of your Words its too difficult Understand the Missing Words...🙏 thanks again

  • @siddhartharao8490
    @siddhartharao8490 8 ปีที่แล้ว

    Nice video...I would like to know the main difference between cursors and collections?

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

      collection gives more fuctionality in different way..cursor is forward direction only we cannot back but in collection we can fetch data using collection method.

  • @karan_2892
    @karan_2892 7 ปีที่แล้ว

    I get insufficient privileges error while trying to provide grants on those tables , I'm able to query those tables but I cannot access them through PL-SQL procedure .
    I'm Logged in through System user , I guess it should have all privileges to provide grants...
    Any suggestions ?
    I'm practicing on Oracle Express edition 11g .
    GRANT SELECT ON SYS.V_$SESSION TO INVENTORY1;
    GRANT SELECT ON SYS.V_$sesstat TO INVENTORY1;
    GRANT SELECT ON SYS.V_$statname TO INVENTORY1;
    ORA-01031: insufficient privileges
    01031. 00000 - "insufficient privileges"
    I get above errors while being connected through SYSTEM .
    I had given below grants to inventory1 while creating it
    CREATE USER INVENTORY1 IDENTIFIED BY INVENTORY1;
    GRANT CONNECT, RESOURCE, DBA TO INVENTORY1;
    GRANT CREATE SESSION, GRANT ANY PRIVILEGE TO INVENTORY1;
    GRANT UNLIMITED TABLESPACE TO INVENTORY1;

    • @PracticallyPerfectPLSQL
      @PracticallyPerfectPLSQL  7 ปีที่แล้ว +1

      When you connect as SYSTEM, be sure to do as SYSDBA. Then your grant should work fine.

  • @s123square7
    @s123square7 8 ปีที่แล้ว

    sir, thankyou

  • @AshishSingh-qu3ns
    @AshishSingh-qu3ns 6 ปีที่แล้ว

    Can you give example of collection of record types

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

      DECLARE
      TYPE employees_t IS TABLE OF employees%ROWTYPE;
      TYPE my_rec_t IS RECORD (n NUMBER);
      TYPE my_Recs_t IS TABLE OF my_Rec_t;

    • @AshishSingh-qu3ns
      @AshishSingh-qu3ns 6 ปีที่แล้ว

      Practically Perfect PL/SQL with Steven Feuerstein ... Thanks a lot Steve.. will keep you busy in coming days.. going through all your tutorials 😊

  • @technologyfollowing2820
    @technologyfollowing2820 7 ปีที่แล้ว

    Hi Steven...Good info on collections..Very useful..Would you tell me how to download your demo.zip file..?

    • @PracticallyPerfectPLSQL
      @PracticallyPerfectPLSQL  7 ปีที่แล้ว +1

      www.oracle.com/webfolder/technetwork/tutorials/plsql/sfdemo.zip.
      p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 13.0px Helvetica; color: #555555; -webkit-text-stroke: #555555; background-color: #f6f6f6}
      span.s1 {font-kerning: none}

    • @MacK-uh7ix
      @MacK-uh7ix 2 ปีที่แล้ว

      @@PracticallyPerfectPLSQL Hey Steven, the link does not work anymore. Any other place that this archive file is available?

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

      Hi, the resource (demo.zip) is not available on the shared link. Please share the working link again.

  • @shanawazali6161
    @shanawazali6161 3 หลายเดือนก่อน

    Please