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

  • @OmarAbdelaziz__47
    @OmarAbdelaziz__47 2 ปีที่แล้ว +3

    Intelligent Metaphor. Your examples are very awesome and intuitive.

    • @TheMagicofSQL
      @TheMagicofSQL 2 ปีที่แล้ว +1

      Thanks, glad you find this useful

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

    Great explanation

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

    Thanks

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

    Amazing videos! thanks for making understanding everything so easily.

    • @TheMagicofSQL
      @TheMagicofSQL 3 ปีที่แล้ว +2

      You're welcome Prathamesh, glad you found this useful :)

  • @KiranKumar-zt1us
    @KiranKumar-zt1us 2 ปีที่แล้ว

    great eg...

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

    One doubt, what if for each record we want to update the record in database and also call a process to log an event to trigger some automatic action? Is there any efficient way to do that without loop?

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

      You want to update the rows and log which rows you updated? You can use RETURNING BULK COLLECT to capture values oracle-base.com/articles/misc/dml-returning-into-clause#collections

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

      The Magic of SQL No, I have json from which I extract data using loop and then I update them in the main table for which the data is and I call a common package process to log that change which inserts that into other table.

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

      I'm not sure exactly what you're doing. If you can put together a simple example (create table + inserts + your process) and post it on asktom.oracle.com we'll see what we can do to help

  • @archananair3274
    @archananair3274 2 ปีที่แล้ว +1

    Awesome concepts.but have a doubt - What will be the best approach to delete millions of records (historical transaction data say from year 2008 to 2018)from a table which has many child tables too (32) and in the child tables it has even more data (1 transaction itself can have 1000 records in the child table).And how can we process this in production environment without affecting the active transaction

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

      The ideal solution here is to use reference partitioning. This enables you to partition the parent table by date and copy this scheme to all the child tables. Dropping the parent partition removes all the associated rows from the child tables.
      For details on this see the recording of my Ask TOM Office Hours session on data archival th-cam.com/video/WF25_n5knrw/w-d-xo.html