Search found 13 matches

by nisaumande
Tue Jan 13, 2009 8:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: NLS mapping problem
Replies: 12
Views: 7256

You should also check the parameter NLS_LANG for the oracle client.

Nicolas
by nisaumande
Wed Oct 08, 2008 8:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Internal Error Code
Replies: 3
Views: 4423

I already had this error. There was a bug in a job ending in inserting some bad characters in a table. (If I remember well, it was @FM character or something like that). We had the error when doing a query with join conditions on the field having that bad character. I had actually to drop and re-cre...
by nisaumande
Wed Aug 06, 2008 5:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Remove duplicates on morethan 1 column
Replies: 13
Views: 7274

Apart from what is the problem of Arshi, the easiest way I found to remove key duplicates is to send all the lines in a Hash File with the right key definition.
The input sort order defines which lines are kept.

Nicolas
by nisaumande
Wed May 09, 2007 8:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Prblems with polish character
Replies: 8
Views: 4643

You should also check your NLS_LANG setting for the Oracle client you're using with Datastage.
by nisaumande
Tue Jan 30, 2007 3:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage, Oracle and UTF-8
Replies: 3
Views: 3134

The NLS_LANG setting is used by any Oracle client, Windows or Unix.

Do you have any error from Datastage ?
Are the NLS activated in Datastage ?
by nisaumande
Wed Dec 13, 2006 10:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Waiting for job to start
Replies: 8
Views: 3223

I deleted the 10 306 files of the &PH& folder, and it's working much better.

Would it be a good thing to clear that folder automatically every month on each of our environnement ?
by nisaumande
Wed Dec 13, 2006 7:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Waiting for job to start
Replies: 8
Views: 3223

I checked the cpu use during that 'pause' and it was mainly idle.

We tried to purge the logs for that job before lauching it, the start is still delayed.

The auto-purge is on and keep 3 days of logs.
by nisaumande
Wed Dec 13, 2006 5:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Waiting for job to start
Replies: 8
Views: 3223

Waiting for job to start

Since a few days, our jobs sequence are taking more than one minute to start the job design in our development environment. Here is the log of one of our job : 2694 INFO ~2006-12-13 11:20:22 JsIntegrationMAPP_FAB_MAPP..JobControl (DSRunJob): Waiting - for job JcCMNExecuteJobDesign.JaAlimentationT_AX...
by nisaumande
Thu Dec 07, 2006 5:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to deal with char(1) in datastage
Replies: 9
Views: 3800

Is the oracle database parameter 'NLS SEMANTICS' set to CHAR ?

I had that case with the nls not activated in Datastage, and the code page of Oracle set to utf8.

So a char(1) in Oracle was considered as a char(4) in Datastage.
(Any char(n) become a char(4n)).

Nicolas
by nisaumande
Thu Aug 24, 2006 10:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to obtain the starttimestamp of the parent-sequencer
Replies: 15
Views: 8405

About the DSAttachJob function :

I was wondering how it works when you have multiple instances of the same job runing ?

How do DS know which job handle to use as he only get the name of the job ?
by nisaumande
Wed Aug 16, 2006 7:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using DSSetParam and DSGetParamInfo in a job control
Replies: 4
Views: 3493

And as an FYI, I've never bothered to check to that level. Simply checking the status of the DSSetParam function is sufficient: ErrCode = DSSetParam(JobId, ParamName, ParamVal) If ErrCode # DSJE.NOERROR Then (error code) End Actually I wanted to check the values I got from the parameters files rath...
by nisaumande
Wed Aug 16, 2006 7:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using DSSetParam and DSGetParamInfo in a job control
Replies: 4
Views: 3493

Ok, thanks for your answer. Too bad I can't read the post, but I get the point from the first sentence :wink: About the online help on the DSGetParamInfo function : DSJ.PARAMVALUEString - Current value of the parameter for the running job or the last job run if the job is finished. Maybe we can say ...
by nisaumande
Wed Aug 16, 2006 1:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using DSSetParam and DSGetParamInfo in a job control
Replies: 4
Views: 3493

Using DSSetParam and DSGetParamInfo in a job control

Hi, I'm facing a situation I do not understand, even if everything is working ok. Maybe someone know how this work ? I'm using a job control in order to get the parameters values to execute a job sequence. I'm doing something like this in order to get the parameters list : ParamList = DSGetJobInfo(J...