Java Jayway jsonpath uses the operator .. to initiate a so-called deep scan (see here). Is there something similar in oracle SQL/JSON? I looked at the oracle documentation here but didn't find anything similar.
1 Answer
Currently SQL/JSON path expressions do not allow what you call 'deep scans' (or // in XPath). Can you tell us more about the use case? Do you really need to recursively nested arbitrarily deep into the json or can you enumerate the possible paths? Thanks
1 Comment
jeromerg
Thank you for the answer. I need to look for "error" keys in a kind of logging nested structure. The "error" keys can be at many places and at many depths in the tree. So it is quite hard to enumerate all the possible paths in advance.
..- a deep scan operator". That tells me nothing about what the operator actually does so how are we meant to determine if Oracle has something similar?