How to commit in a trigger | Oracle PL SQL

Поделиться
HTML-код
  • Опубликовано: 26 окт 2024

Комментарии • 15

  • @mayankjindal9144
    @mayankjindal9144 6 лет назад +1

    Thanks alot bro. Your playlist of 63 videos is really helpful even to prepare for an interview and clears all the concept of sql and plsql. Please keep posting such good scenarios and comparisons. Hats off to you!! Is it possible if we can get the slides or ppts you shown while explaining those videos. Again, thanks much. I will share your videos among my friends.

    • @KishanMashru
      @KishanMashru  6 лет назад

      Thank you Mayank, It really feels great when I read such comments on our channel, this channel is dedicated to people like you who constantly want to learn and grow themselves. Also I would like to mention that there exists one more playlist ruclips.net/p/PLTbN5PPRsw2tkPcKLxovdsyGzo0Vsi2py which has videos related to PL/SQL Interviews.

  • @vallimuthaiyah5098
    @vallimuthaiyah5098 7 лет назад +1

    very useful video on triggers😀 thanks a lot Kishan.. this is something that we come across in day to day coding standards of plsql.. looking forward for more videos on performance tuning topics please 😀

    • @KishanMashru
      @KishanMashru  7 лет назад

      Thanks Valli, I am glad you enjoyed the video :) I hope you have subscribed to our channel and given this video a "thumbs up"!!!

  • @sravyasangaraju6335
    @sravyasangaraju6335 6 лет назад

    Great explanation Kishan. Thanks

    • @KishanMashru
      @KishanMashru  6 лет назад

      Welcome Sravya!!! Hope you have liked the video and subscribed to our channel!!! :)

  • @YogeshBiguvu2208
    @YogeshBiguvu2208 6 лет назад

    Very good explanation...thanks a lot..

    • @KishanMashru
      @KishanMashru  6 лет назад

      Welcome!!! Hope you have liked the video and subscribed to our channel!!!

  • @shaheenshaikh6701
    @shaheenshaikh6701 5 лет назад

    Thanks a ton sir for such a gr8 video !!! I have a question like when to use before and after in trigger im confused in that plz help !! Thanks .

  • @debadyutibal4300
    @debadyutibal4300 7 лет назад +1

    Nice explanations dude, Thanks... Can u make videos on 'serially reusable pragma' and other pragmas in PLSQL except autonomous and exception_init.

    • @KishanMashru
      @KishanMashru  7 лет назад

      Serially reusable : Noted :) Hope you have liked the video!!!

    • @debadyutibal4300
      @debadyutibal4300 7 лет назад

      Bro where is the link of 'pragma serially_recusable '

  • @prasadtamminana1800
    @prasadtamminana1800 5 лет назад

    hi bro ur explanation is godd but why u have declared p_error_code,p_error_msg inte trigger declaration part

    • @sivak7020
      @sivak7020 5 лет назад

      When any exceptions occurred
      Then he used to print those errors message and code.
      Like
      Exceptiona
      When others then
      dbms_output.put_line(p_error_code|| ||p_error_msg);

  • @fancyfantasy3443
    @fancyfantasy3443 6 лет назад

    so, no matter whether it is a before or an after level trigger, the rollback revert the changes to the EMPLOYEES table but not EMP_LOG_UPDATE. Am I wrong?