Search found 15603 matches

by ArndW
Thu Nov 27, 2008 11:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Calling Unix command from User variable activity stage
Replies: 5
Views: 2940

Why not just call the UNIX command from a command stage, then refer to the result in your user variable activity stage.
by ArndW
Thu Nov 27, 2008 11:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fatal ERROR Null value on the accessor interfacing to Field
Replies: 4
Views: 16169

Stage variables cannot be set to null. Is "CODE1" a stage variable?
by ArndW
Thu Nov 27, 2008 11:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: PROBLEM - INSERTING RECORDS into DB2 UDB API stage
Replies: 4
Views: 803

Allow reject in the DB2 stage and put the reject link out to a peek stage to find out why it is being rejected. If no rejects, then check for your unique primary key - what column(s) are used?
by ArndW
Thu Nov 27, 2008 8:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CONVERT Function not performing as expected...
Replies: 11
Views: 2992

Just delete the "Record Delimiter" completely. You are seeing the difference between a UNIX and DOS line termination, <CR>LF> versus <LF>.
by ArndW
Thu Nov 27, 2008 6:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML File Problem
Replies: 3
Views: 2538

sequential file stage.
by ArndW
Thu Nov 27, 2008 6:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Command to clear the log file
Replies: 4
Views: 2116

There is no UNIX command to do this, but you can set the autopurge settings to automatically do this for you.
by ArndW
Thu Nov 27, 2008 6:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: UpCase Function
Replies: 6
Views: 2753

Does the derivation "Upcase(In.Character)=In.Character" for this character equate to 1 or 0?
by ArndW
Thu Nov 27, 2008 6:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Canot populate the target FILE with data
Replies: 21
Views: 13149

The only way that 100 rows going into a transform won't generate 100 rows for each and every output link is if you use constraints (or have errors). So we need to know what constraints you have used.
by ArndW
Thu Nov 27, 2008 5:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Canot populate the target FILE with data
Replies: 21
Views: 13149

The messages you posted are for a lookup stage, yet your are talking about a transform stage. Ignoring your lookup stage issues, the transform stage limits output only in the constraints, so please post your constraints and whether or not you have activated the "otherwise" box for any of them.
by ArndW
Thu Nov 27, 2008 5:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CONVERT Function not performing as expected...
Replies: 11
Views: 2992

If you do as Ray suggests you will need to increase BigCol to hold more than 25 charactes.
The "Final Delimiter" is not the same as the "Line delimiter"
by ArndW
Wed Nov 26, 2008 12:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to start DS JOBS
Replies: 7
Views: 1943

I don't think that FTP can be used in the way that you think. There are 2 approaches to this - either you have a job running that waits for an event to happen and then starts processing, or you use dsjob.exe on the remote machine where the event happens to start the processing on the DS server. Both...
by ArndW
Wed Nov 26, 2008 11:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to start DS JOBS
Replies: 7
Views: 1943

you can install dsrun.exe on any machine which can "see" (in TCPIP terms) the DS server. You can check up the syntax for dsrun.exe in the documentation, but using the program you can start a job on the DS server; so if you write a script or .BAT program in Windows it can automatically start a remote...
by ArndW
Wed Nov 26, 2008 11:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to start DS JOBS
Replies: 7
Views: 1943

It is much simpler to call the dsjob.exe program and start the job directly.
by ArndW
Wed Nov 26, 2008 11:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_CombinedOperatorController(0),0:Field 'V' from...is NULL
Replies: 11
Views: 8506

What happened to the mandatory 2nd "ELSE"?
by ArndW
Wed Nov 26, 2008 9:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CONVERT Function not performing as expected...
Replies: 11
Views: 2992

Ok, that can be done. Keep your input file definitions as they are. If I recall correctly, 0x0a is "whitespace" in XML, so you could add a transform stage: SvarNewLine = IF INDEX(In.BigColumn,'>',1) > 0 THEN 1 ELSE 0 SvarOutString = IF SvarNewLine=1 THEN SvarDataString:In.BigColumn ELSE '' S...