Page 1 of 1

Unrecognized argument: ) [argvcheck/argvcheck.C:3832]

Posted: Wed Aug 05, 2009 8:44 am
by RAJEEV KATTA
I am getting the following error when I run my job "Unrecognized argument: ) [argvcheck/argvcheck.C:3832]" apart from this it doesn't display anything.Could you please let me know what is the cause of the problem.

Posted: Wed Aug 05, 2009 9:17 am
by ArndW
Do you know which stage this is happening at?

Posted: Wed Aug 05, 2009 9:30 am
by RAJEEV KATTA
It doesnot even say that in the log.

Posted: Wed Aug 05, 2009 9:39 am
by priyadarshikunal
Then can you please post the unedited log???

Posted: Wed Aug 05, 2009 10:04 am
by Sainath.Srinivasan
Set APT_DISABLE_COMBINATION to true and re-run the job.

Posted: Wed Aug 05, 2009 4:40 pm
by RAJEEV KATTA
I found the problem,when you run the query and in the where clause condition s if a column=job parameter and the job parameter is an empty string it aborts.

Example-: select empno,ename from emp where empno in (#ENO#)
where ENO is a job parameter and its value is ('123','') then as empty string '' is there it aborts but the same query when you run it in database it works.

It could be the reason that when job parameter value has empty string it would convert internally into some value and it fails the code.

Not sure what job parameter converts an empty string but please post back if you know it and how do we handle that situation.

Posted: Thu Aug 06, 2009 2:13 am
by Sainath.Srinivasan
What happens if you provide two non-empty values. Something like '123','456' - together.