Search code examples
regexoracle-databasepeoplesoft

Can we activate the regexp_like operator in PeopleSoft Query Manager (4-tier)


As I am just learning more and more about regular expressions in programming languages, and especially all the performance benefits we can take out of this for string manipulations, I see that of course Oracle supports regular expressions.

But on PeopleSoft (4-tier), within the "Query Manager", we can only select the "Like" operator and of course, each time we use it, the query performances drop down dramatically (logical)...

Does anyone know if this is something which can be activated as a parameter or it does not exist at all as considered too complex for a "normal" end user?


Solution

  • From a performance perspective a REGEXP_LIKE is no different to a LIKE. It is even less likely to use an index. All it might to is return a more focused result set.

    PeopleSoft Query Manager (4-tier) is aimed at non-technical people. Many programmers have problems understanding regular expressions: I think people who can't write SQL are going to really struggle with regex.