Search found 520 matches

by mhester
Thu Mar 31, 2005 11:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SeqCALLCENTERCAGLIARICcm has finished, status = 96 (Crashed)
Replies: 11
Views: 5909

Issues can arise from system resource contention if you are running an extremely large number of processes in parallel. If these are sequential in nature then I would not believe that resource contention would be your problem.
by mhester
Thu Mar 31, 2005 11:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SeqCALLCENTERCAGLIARICcm has finished, status = 96 (Crashed)
Replies: 11
Views: 5909

First, you may be experiencing resource contention so this may/maynot be causing the issue you describe. The -99 or unknown error may indicate just this type of problem. What are the 90 phantom processes? Second, Ray and Ken may wiegh in with more information, but I believe the dslictool file is not...
by mhester
Thu Mar 31, 2005 11:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: usage of slowly changing dimensions in datastage
Replies: 4
Views: 3095

I believe you can do a search for SCD, or Slowly etc... and find a bunch of information regarding the implementation of SCD's within DS. I believe Ken and others have given wonderful discourse on how to do this.

Regards,
by mhester
Thu Mar 31, 2005 11:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to hand mutiple files in server jobs
Replies: 6
Views: 994

If your source files/tables are the same (same metadata) and the output from the job will be the same for each source then you can simply parameterize your job (filename, output file name etc...) and then set the "Allow Multiple Instance" property to true for this job then create a sequenc...
by mhester
Thu Mar 31, 2005 11:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SeqCALLCENTERCAGLIARICcm has finished, status = 96 (Crashed)
Replies: 11
Views: 5909

Do you set the "Execution Action" to "reset if required, then run" in the job activity stages? I have seen this behavior before when the job is not in a runnable state for whatever reason.
by mhester
Thu Mar 31, 2005 10:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: what does bin/uv mean
Replies: 4
Views: 3114

bin is the directory and uv is the UniVerse executable.
by mhester
Thu Mar 31, 2005 10:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SeqCALLCENTERCAGLIARICcm has finished, status = 96 (Crashed)
Replies: 11
Views: 5909

It would seem to me that there is a user written routine involved here that calls the wrong function. You are calling -

Code: Select all

DsLogWarning
and it should be -

Code: Select all

DSLogWarn
by mhester
Wed Mar 30, 2005 3:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: CPU AND LINK PARTIONERS
Replies: 9
Views: 2675

I believe the answer to your question is not as simple as some algorithm or formula that can be given to you here. I'm not sure Ascential publishes such information in a definitive way. My experience has always been that there is a point of diminishing return, meaning that at some point the overall ...
by mhester
Wed Mar 30, 2005 12:52 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Stopped/started DS, RPC daemon problem
Replies: 13
Views: 7689

I fat fingered the i and l - sorry!
by mhester
Wed Mar 30, 2005 8:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Stopped/started DS, RPC daemon problem
Replies: 13
Views: 7689

Phil, I'm not sure that 30 seconds is sufficient on its own. You should issue the following commands to ensure that nothing is returned prior to starting the services - netstat -a | grep rpc ps -ef | grep phantom ps -ef | grep dsapi or dsslave If these are clean then you should be able to start, but...
by mhester
Wed Mar 23, 2005 3:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: seq file
Replies: 24
Views: 4986

DSExecute is a subroutine therefore it is a CALL like =

Call DSExecute("UNIX",CMD,RET,SYSRET)

The output of the command is held in RET and you can interrogate SYSRET for status.
by mhester
Wed Mar 23, 2005 12:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creating DSN remotely
Replies: 3
Views: 1732

Bill, Do you have access to Remote Desktop Connection via your client? I think this would be the easiest and simplest way of doing this. Here is an example call to programmatically create a DSN for Excel - SQLConfigDataSource(NULL,ODBC_ADD_DSN, "Excel Files (*.xls)", "DSN=New Excel Da...
by mhester
Fri Mar 18, 2005 9:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: version control moved different job
Replies: 8
Views: 3375

Seems to have crept in since Ascl took over the maintenance of Version Control from our friends at DCS! Has Ascential made any further code enhancements since maintenance was turned over to Ascl? The last change I made to the product prior to turnover was to address ecase - 58690 (Version Control i...
by mhester
Thu Mar 17, 2005 12:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Conditional conversion of rows to columns
Replies: 7
Views: 2950

Sarat, The pivot stage within DS is for horizontal pivots or creating multiple rows from a single row of data. A vertical pivot (or the ability to map vertical data from many rows into a single row) is not supported. I have not done exactly what you ask for many years, but I'm sure some others will ...
by mhester
Fri Mar 11, 2005 7:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Observation on comparing @NULL
Replies: 4
Views: 1107

Phil, I'm not quite certain though as to why we are seeing this behavior. It is likely that COMPARE resolves to either strcmp (non nls systems) and strcol (nls enabled systems) and both of these work fine when one or both of their arguments are null. Also I do not believe it is a DS thing rather it ...