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
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

Quick connection discovery mode for forwarders

When a Splunk forwarder loses connectivity to its indexers, it does not always reconnect immediately. In many ...

Build and Launch AI Agents from Your Splunk Workflows

  Register We’ve all been there: juggling alerts, runbooks, and endless manual searches. What if you could ...

Splunk Cloud Application Management in Terraform

Register   On Tuesday, August 4 at 11AM PDT / 2PM EDT, we’re diving into how you can bring Infrastructure as ...