DSP.OpenGCI $DSP.open error -100

Post questions here relative to DataStage Server Edition for such areas as Server job design, DS Basic, Routines, Job Sequences, etc.

Moderators: chulett, rschirm, roy

Post Reply
synsog
Premium Member
Premium Member
Posts: 232
Joined: Sun Aug 01, 2010 11:01 pm
Location: Pune

DSP.OpenGCI $DSP.open error -100

Post by synsog »

Hi,

Im using DB2 connector as look up to transformer and using SQL inside the connector for look up. when i run the job, the get the error "DSP.OpenGCI $DSP.open error -100" and a warning "schema reconciliation failed : the column names defined on the link donot match with that of the external resource". i checked all the columns and all look fine. as i have seen in one of the posts, i deleted and recreated the stage and link but still same error.

Please help.
kvshrao
Participant
Posts: 6
Joined: Fri Aug 03, 2012 12:25 am
Location: Chennai
Contact:

Re: DSP.OpenGCI $DSP.open error -100

Post by kvshrao »

DSP Open Errors commonly occurs due to below listed one's


1. Metadata Mismatch such no of columns mismatch
2. Wrong Credentials


But as per your post, It is Type 1 of above listed

Thanks
Thanks
Ravi
ArndW
Participant
Posts: 16318
Joined: Tue Nov 16, 2004 9:08 am
Location: Germany
Contact:

Post by ArndW »

It really is a mismatch, if you cut-and-paste your SQL to your favorite tool and try to run it, you might see the problem.

typically, if your SQL contains "CAST(MyColumn as VarChar(32))" then you will get this kind of error, you would need to write "CAST(MyColumn as VarChar(32)) as MyColumn"
Post Reply