Skip to main content

27 Hours of Free PL/SQL Video Training at PL/SQL Channel

[June 2016 update: PL/SQL Channel videos have been moved to the new Practically Perfect PL/SQL channel on YouTube. The PL/SQL Channel has been disabled. Scripts referenced in the videos can be found at the PL/SQL Learning Library. Click on the demo.zip download. Or check out all my LiveSQL scripts.]

A few years ago, I recorded roughly twenty-seven (27) hours of training on the Oracle PL/SQL language and made them available via subscription on the PL/SQL Channel.

Just a little under a year ago, I was re-hired by Oracle, and at the same time, Oracle purchased the PL/SQL Channel.

So I am very happy to announce that all training videos at the PL/SQL Channel are now available without subscription.

While these videos do not offer comprehensive coverage of all PL/SQL topics, as  you can see below, I certainly went into depth in a number of areas, notably PL/SQL collections:


I have moved these videos over to my new Practically Perfect PL/SQL channel.

Comments

  1. Precious resource. Thanks Oracle -- i mean you.

    ReplyDelete
  2. Hello Steven,

    Thanks lots of times for sharing the good news,
    and, also, thank you and Oracle for offering the pleasure to enjoy your so colorful
    presentations also to those who don't have the luck to attend them live.

    Best Regards,
    Iudith

    ReplyDelete
  3. Thank you very much for sharing Steven!

    ReplyDelete
  4. Hello Steven,
    Thanks for this sharing.

    Best regards,
    Cherif.

    ReplyDelete
  5. Thank you so much for all these videos. You are an amazing person!

    ReplyDelete
  6. HI Steven,

    Iam lakshminarayana , Iam from India, please kindly tell me that PLSQL Challenge which is now part of oracle is it free to take Quiz in that or we need to pay any amount to write the quiz,.


    Thanks
    Lakshminarayana

    ReplyDelete
  7. Lanka, the PL/SQL Challenge is entirely free, both to take a quiz and to write/submit one of your own to be played.

    ReplyDelete
    Replies
    1. HI Steven,


      Thank you

      Thanks
      Lakshminarayana

      Delete
    2. HI Steven,


      please kindly let me know if you have any good videos from where I can learn oracle architecture and all basics and also PLSQL and its advanced Concepts,if they re by you it will be helpful , if not from other professionals also it is fine ... please dont mind .

      Thanks
      lakshminarayana

      Delete
  8. Hi Steve ,

    Your videos collection for PL/SQL was very useful and Programming with collection is my favourite one.

    thanks for your contribution

    Regards,
    Parthiban Kumar

    ReplyDelete
  9. Thanks Steve,

    For sharing worthable videos . It's really awesome

    Regards,
    Maheswar Reddy

    ReplyDelete
  10. Hi Steve,
    Could you please share the Pl/sql videos?
    Thanks in advance !!!

    ReplyDelete
  11. Vamsikrishna, that's why I am doing. You can access my videos here:

    https://www.youtube.com/channel/UCpJpLMRm452kVcie3RpINPw/feed?view_as=public

    and also at plsqlchannel.com, but I suggest you use YouTube as your primary location for my videos.

    ReplyDelete
  12. Thanks Steve for sharing the link !!!

    ReplyDelete
  13. Hi Steven,

    Thanks for these valuable videos, I am looking forward for great learning experience.

    Could you please share the link for demo.zip referenced in Col1: Introduction to collections video within Practically Perfect PLSQL Channel? I am not able to access the provided link.

    Thanks & Regards,
    Sneha C

    ReplyDelete
  14. I have updated this post with the information you requested at the top of the page.

    ReplyDelete
  15. Thanks Steven for the link for the scripts referenced.

    Thanks & Regards,
    Sneha C

    ReplyDelete
  16. Hi Steven,
    do not see the series - Error Management in PL/SQL in the youtube channel. could you share the link

    Regards,
    Tiby

    ReplyDelete
    Replies
    1. Try this one:

      https://www.youtube.com/playlist?list=PL0mkplxCP4yid17mq0WCN3q4l3Sd-7zJo

      Delete
  17. Great Job Steven ...Excellent videos ..can you share some plsql tuning
    videos and script.Looking Forward for some more video of PLSQL
    THANK YOU ...

    ReplyDelete
  18. Hi Steven,

    Thanks for these valuable videos, I am looking forward for great learning experience.
    Regards,
    Sneha

    ReplyDelete
  19. Have you ever thought about publishing an ebook or guest authoring on other websites?
    I have a blog centered on the same information you discuss and would love to have you share some stories/information. I know my audience would appreciate your work.
    If you are even remotely interested, feel free to shoot me an e mail.

    ReplyDelete
    Replies
    1. My content is of course owned by Oracle. Happy to discuss possibilities with you, but you did not leave any contact info.

      Delete

Post a Comment

Popular posts from this blog

Quick Guide to User-Defined Types in Oracle PL/SQL

A Twitter follower recently asked for more information on user-defined types in the PL/SQL language, and I figured the best way to answer is to offer up this blog post. PL/SQL is a strongly-typed language . Before you can work with a variable or constant, it must be declared with a type (yes, PL/SQL also supports lots of implicit conversions from one type to another, but still, everything must be declared with a type). PL/SQL offers a wide array of pre-defined data types , both in the language natively (such as VARCHAR2, PLS_INTEGER, BOOLEAN, etc.) and in a variety of supplied packages (e.g., the NUMBER_TABLE collection type in the DBMS_SQL package). Data types in PL/SQL can be scalars, such as strings and numbers, or composite (consisting of one or more scalars), such as record types, collection types and object types. You can't really declare your own "user-defined" scalars, though you can define subtypes  from those scalars, which can be very helpful from the p

The differences between deterministic and result cache features

 EVERY once in a while, a developer gets in touch with a question like this: I am confused about the exact difference between deterministic and result_cache. Do they have different application use cases? I have used deterministic feature in many functions which retrieve data from some lookup tables. Is it essential to replace these 'deterministic' key words with 'result_cache'?  So I thought I'd write a post about the differences between these two features. But first, let's make sure we all understand what it means for a function to be  deterministic. From Wikipedia : In computer science, a deterministic algorithm is an algorithm which, given a particular input, will always produce the same output, with the underlying machine always passing through the same sequence of states.  Another way of putting this is that a deterministic subprogram (procedure or function) has no side-effects. If you pass a certain set of arguments for the parameters, you will always get

How to Pick the Limit for BULK COLLECT

This question rolled into my In Box today: In the case of using the LIMIT clause of BULK COLLECT, how do we decide what value to use for the limit? First I give the quick answer, then I provide support for that answer Quick Answer Start with 100. That's the default (and only) setting for cursor FOR loop optimizations. It offers a sweet spot of improved performance over row-by-row and not-too-much PGA memory consumption. Test to see if that's fast enough (likely will be for many cases). If not, try higher values until you reach the performance level you need - and you are not consuming too much PGA memory.  Don't hard-code the limit value: make it a parameter to your subprogram or a constant in a package specification. Don't put anything in the collection you don't need. [from Giulio Dottorini] Remember: each session that runs this code will use that amount of memory. Background When you use BULK COLLECT, you retrieve more than row with each fetch,