We are trying to integrate an Oracle DB, batch mode seems to work fine and we are able to get data with the query: However, when changed to "Rising Mode" and using the "EVENT_TIMESTAMP" column as "Rising Column" We are getting following error: "error in dbxquery command external search command exited unexpectedly" We have another DB that has similar Rising configuration and we are able to run the query and save it without problems We opened a case with support: Case #3806630 Cannot integrate Oracle DB We tried multiple functions in the batch query input but still we were facing issue in retrieving data from the database while using the batch input. So we tried using the below mentioned query: SELECT u.* FROM unified_audit_trail u WHERE event_timestamp > TO_TIMESTAMP('2025-08-27 16:00:01.195334', 'YYYY-MM-DD HH24:MI:SS.FF6') FETCH NEXT 10 ROWS ONLY; And we were able to retrieve data in the batch input. Then we switched to the Rising column input, but we cannot use this TO_TIMESTAMP function in the rising column, as it does not allow us to use that in where condition of rising column input. If we try to use it without the function then it was not getting the data as the query was getting timed out again and again due to huge volume of data present in the database table. Any suggestions at this point? Support suggested the following: We recommend you could create an alias column in the database table that already has the function converted Time Stamp so we do not need to have that mentioned in the rising column input query or if that is not feasible for your DB team then they can create a stored procedure on the database end that could be called from the batch input query, to fetch the records for the last 10 mins, and set the CRON for that batch input for every 10 mins in the DB Connect add-on. That way you can retrieve the db data into splunk that got ingested in the last 10 mins in the Database. However seems that is not an option for the customer.
... View more