Search found 15603 matches

by ArndW
Tue Jun 20, 2006 6:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Jobs lost when updated in DS_JOBS
Replies: 22
Views: 5867

Anupam, your post was a bit unclear about the current status. 1. How did you change the DS_JOBS hashed file (a program? TCL "update" command?)? 2. You need to make sure that all users are logged out when you do a reindex. Also, do your indices need rebuilding (do a LIST.INDEX DS_JOBS ALL and see if ...
by ArndW
Tue Jun 20, 2006 5:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Communication Link Error
Replies: 1
Views: 823

Oddly enough, I am getting the same error at the moment on a new installation where the DB/2 database hasn't been set up correctly. You will get the same problem when doing a "db2 connect" from a shell and it is not a DataStage problem. Get your DB/2 people involved and once it works from UNIX then ...
by ArndW
Tue Jun 20, 2006 5:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Extraction is very slow
Replies: 9
Views: 1353

That looks OK. I just looked at your query - are you sure that is the correct one, since it only returns 1 row of data?
by ArndW
Tue Jun 20, 2006 3:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: crashed message was issued, but processing did not aborted
Replies: 3
Views: 876

Why do you think this is a problem with the controlling sequence? It will not generate any log messages while it waits for the job(s) that it started to return some status other than running. It continued once the XX job returned a problem status.
by ArndW
Tue Jun 20, 2006 3:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Extraction is very slow
Replies: 9
Views: 1353

Put the dump score attribute in your job parameters, set the value to "true" and look at the dump score in your log file.
by ArndW
Tue Jun 20, 2006 3:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: grouping
Replies: 11
Views: 3292

I just noticed that I posted a SERVER response in the EE forum. Ignore my previous post!

Matthieu's response is a good approach in a PX job.
by ArndW
Tue Jun 20, 2006 3:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Improper datatype
Replies: 1
Views: 603

Sounds like you have very many columns in your transform stage! You could look at the generated source code for your transform to find line 4300 (+- 5) and see what is being done. Or, if most of your column mappings straight-through derivations you can concentrate on those derivations that you have ...
by ArndW
Tue Jun 20, 2006 3:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: sort order
Replies: 9
Views: 1933

These speeds also depend greatly on what order the incoming data is already in.
by ArndW
Tue Jun 20, 2006 3:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: crashed message was issued, but processing did not aborted
Replies: 3
Views: 876

Do a reset of job XX and look at the message "from previous run" that gets created in the log file.

Please do not request "ASAP" help unless you are willing to pay for it. This is a volunteer site.
by ArndW
Tue Jun 20, 2006 3:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: grouping
Replies: 11
Views: 3292

If that is all you need then a simple transform stage and not an aggregator is sufficient for you. Create a stage variable "GroupCount" with a derivation of "IF In.Col1=LastGroup THEN GroupCount += 1 ELSE GroupCount" and an initial value of 0 Creat another stage variable after that called "LastGroup...
by ArndW
Tue Jun 20, 2006 1:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Calling a DS job from Unix server
Replies: 1
Views: 915

the command is "dsjob -run" with options. You can call it up from the command line to get the options or use teh documentation.
by ArndW
Tue Jun 20, 2006 1:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Extraction is very slow
Replies: 9
Views: 1353

With TOAD did you actually list all the data, or did the selection part just start returning data after 15 minutes? Another test you could try is to do the same user defined SQL in a server job which writes to /dev/null or passes through a transform stage that has a false constraint. How many nodes ...
by ArndW
Tue Jun 20, 2006 1:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Extraction is very slow
Replies: 9
Views: 1353

What speed does your job run when you only have your Oracle stage and write to a dataset? What rate does your select statement run at from your favorite client access tool?
by ArndW
Tue Jun 20, 2006 12:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Arabic Character issues in Sequential File
Replies: 9
Views: 3333

So your DataStage is on a UNIX machine, and you are writing to a text file on the UNIX machine and also viewing it there, yet you specified
NLS Setting MS1256-WIN2K-CS
for the file output?
by ArndW
Tue Jun 20, 2006 12:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Converting Numeric into Pic Comp3 data type
Replies: 5
Views: 1941

I'm not at a DataStage machine right now, but think that the SDK has such a routine in there or at some time did have one. Making a COMP-3 out of an integer is not difficult, just a couple of lines of code in BASIC and use of the OCONV function and the "MB" conversion.