All Apps and Add-ons

Splunk DB Connect and Oracle VPD (Virtual Private Databases): Is there a way to execute a stored proc to set a user context?

BP9906
Builder

Hello,

In my gathering of how Splunk DB Connect works, it appears it's not possible to execute a stored proc to set a user context.

Is there a way to support this in DB Connect?

I want to execute the following to set VPD context:

DBMS_SESSION.SET_CONTEXT('CLIENT_CTX', 'CLIENT_ID', V_CLIENT_ID);

Any ideas how to get that working?

Thank you

0 Karma

pmdba
Builder

The JDBC interface only allows simple DML commands: primarily SELECT. It does not allow for the execution of stored procedures or maintain session state between command executions. If you need to do something like this, then use a pipelined function to return the entire table, and include the dbms_session call as part of the function. You can then select from the function as follows:

select your_function() from dual;

There is information on pipelined functions here.

0 Karma
Get Updates on the Splunk Community!

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...

New in Observability Cloud - Explicit Bucket Histograms

Splunk introduces native support for histograms as a metric data type within Observability Cloud with Explicit ...