All Apps and Add-ons

DB connect Exception(' java.sql.SQLException: Missing IN or OUT parameter at index:: 1

Navanitha
Path Finder

Hi,

I am getting java exception error Exception(' java.sql.SQLException: Missing IN or OUT parameter at index:: 1 while trying to run below query from DB connect app 2.4v using rising column input.

SELECT target_name,
collection_timestamp,
metric_label,
column_label,
key_value,
value
FROM sysman.mgmt$metric_details
WHERE metric_name = 'tbspAllocation'
AND collection_timestamp > ?
ORDER BY 1,2,3,4,5

Any help on fixing this is much appreciated. Thank you.

0 Karma

gokadroid
Motivator

Not the same scenario but I got the similar error / issue so below is how i got it and then how I resolved it.

I was using a timestamp table coulmn in a calculation and using that calculation to create new column for rising column as follows (b was timestamp table coulmn):

select a,b,extract(hour from b) as c from myTable
where c > ?
order by c asc

Issue here was I cannot use an alias c in where clause, so db connect was giving me the error mentioned in question. This is how I resolved it by writing expression twice:

select a,b,c from 
( select a,b, extract(hour from b) as c from myTable )
where c > ?
order by c asc
0 Karma

JoMunden
New Member

Also having this issue! Upgrade from DBX v1 to v3 and cannot get my current SQL accepted. Removing the checkpoint value line allows the GUI to run the SQL but then it doesnt fuifill the acceptance criteria and i can get no further in the process.....

0 Karma

manish_singh_77
Builder

Hi Navanitha,

I have also got this error today while setting up DB connect for one of the applications in prod environment. Please try to execute the query first in Database, if it works then please select relevant schema for this query and execute. Let me know if it works for you..

0 Karma

jplumsdaine22
Influencer

Missing parameter would indicate that is having some difficulty with the checkpoint value. Is there a checkpoint file for this input? Does it contain valid data?

0 Karma
Get Updates on the Splunk Community!

Welcome to the Splunk Community!

(view in My Videos) We're so glad you're here! The Splunk Community is place to connect, learn, give back, and ...

Tech Talk | Elevating Digital Service Excellence: The Synergy of Splunk RUM & APM

Elevating Digital Service Excellence: The Synergy of Real User Monitoring and Application Performance ...

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...