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

Post questions here relative to DataStage Enterprise/PX Edition for such areas as Parallel job design, Parallel datasets, BuildOps, Wrappers, etc.

Moderators: chulett, rschirm, roy

Post Reply
RAJEEV KATTA
Participant
Posts: 103
Joined: Wed Jul 06, 2005 12:29 am

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

Post 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.
ArndW
Participant
Posts: 16318
Joined: Tue Nov 16, 2004 9:08 am
Location: Germany
Contact:

Post by ArndW »

Do you know which stage this is happening at?
RAJEEV KATTA
Participant
Posts: 103
Joined: Wed Jul 06, 2005 12:29 am

Post by RAJEEV KATTA »

It doesnot even say that in the log.
priyadarshikunal
Premium Member
Premium Member
Posts: 1735
Joined: Thu Mar 01, 2007 5:44 am
Location: Troy, MI

Post by priyadarshikunal »

Then can you please post the unedited log???
Priyadarshi Kunal

Genius may have its limitations, but stupidity is not thus handicapped. :wink:
Sainath.Srinivasan
Participant
Posts: 3337
Joined: Mon Jan 17, 2005 4:49 am
Location: United Kingdom

Post by Sainath.Srinivasan »

Set APT_DISABLE_COMBINATION to true and re-run the job.
RAJEEV KATTA
Participant
Posts: 103
Joined: Wed Jul 06, 2005 12:29 am

Post 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.
Sainath.Srinivasan
Participant
Posts: 3337
Joined: Mon Jan 17, 2005 4:49 am
Location: United Kingdom

Post by Sainath.Srinivasan »

What happens if you provide two non-empty values. Something like '123','456' - together.
Post Reply