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!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...