Is there a way to prepare a sql statement and store the prep-results in M_SQL_PLAN_CACHE
other than execute the statement? Can it be done for another user? Can it be done on SQL-level?
Background for the question is that our statements take ~30s to prepare but once in M_SQL_PLAN_CACHE they run in about 300 ms. We tried `
ALTER SYSTEM RECOMPILE SQL PLAN CACHE ENTRY 123` but (as expected) this just invalidated the entry and did not update it immediately.