With 23c/23ai , find ANY data in ANY table easily!

แชร์
ฝัง
  • เผยแพร่เมื่อ 14 ต.ค. 2023
  • In 23c/23ai , it now take just a few lines of code to enable a Google-like search across your entire database!
    Follow me!
    blog: connor-mcdonald.com
    twitter: / connor_mc_d
    Subscribe for new tech videos every week
    Other social media channels here: linktr.ee/connor
    Music: Night Owl (Broke For Free), Kevin Mcleod (incomptech), Dyalla
    #sql #database
  • วิทยาศาสตร์และเทคโนโลยี

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

  • @Elfcheg
    @Elfcheg 7 หลายเดือนก่อน +1

    What a nice feature! I guess there are scheduler jobs associated with this facility to update index in background.

    • @DatabaseDude
      @DatabaseDude  7 หลายเดือนก่อน +2

      I suspect it will be the same processing as "sync on commit" for text indexes, ie, to my knowledge there is not a scheduler job because that's a fairly heavy start/stop process

  • @berndeckenfels
    @berndeckenfels 7 หลายเดือนก่อน

    Is the json data really constructed from the index.. I.e. the fülltest index does not only contain reverse tokens but full data (I.e. indexsize is more that data size?) or does it just transparently query the rows to construct a virtual complete result document?

    • @DatabaseDude
      @DatabaseDude  7 หลายเดือนก่อน +1

      the "getdocument" API will build a full json. The index is a "standard" json index, ie, we section the data and extract tokens and the like

    • @berndeckenfels
      @berndeckenfels 7 หลายเดือนก่อน

      @@DatabaseDude in any case a great feature for those full text search problems!