Search found 42189 matches

by chulett
Wed Oct 08, 2014 9:09 pm
Forum: General
Topic: New Line character on Windows
Replies: 17
Views: 6010

I just mean "CR/LF" as in a Carriage Return / Line Feed pair rather than a literal if that's what you tried. Sometimes you need the hex values or "\r\n" or who knows what. Or just play the @FM field mark game Ray posted. :wink:
by chulett
Wed Oct 08, 2014 4:46 pm
Forum: General
Topic: New Line character on Windows
Replies: 17
Views: 6010

Rather than the grep, what about using ls -m which generates the output in a single comma delimited string?
by chulett
Wed Oct 08, 2014 4:24 pm
Forum: General
Topic: New Line character on Windows
Replies: 17
Views: 6010

Not sure exactly what you are trying but the record delimiter on Windows is two characters: a CR/LF pair.
by chulett
Wed Oct 08, 2014 3:24 pm
Forum: General
Topic: Multiple conditions in Routine
Replies: 4
Views: 1199

Yay me! :D

Sorry, didn't even look at the actual code for sense making.
by chulett
Wed Oct 08, 2014 3:00 pm
Forum: General
Topic: Multiple conditions in Routine
Replies: 4
Views: 1199

Dang... been a long time but try:

Code: Select all

If Status = DSJS.RUNFAILED  Then 
    ErrCode = DSRunJob(JobHandle, DSJ.RUNRESET) 
    ErrCode = DSDetachJob(JobHandle)  
    ErrCode = DSRunJob(JobHandle, DSJ.RUNNORMAL) 
END ELSE 
    ErrCode = DSRunJob(JobHandle, DSJ.RUNNORMAL)
END
by chulett
Tue Oct 07, 2014 3:42 pm
Forum: General
Topic: Sequence - Checkpoints - Restartability
Replies: 7
Views: 2240

I was assuming the child / sub-sequences were checkpointed as well...
by chulett
Tue Oct 07, 2014 1:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC Performance
Replies: 5
Views: 1256

What is your target? Saying "DataStage" there doesn't really mean anything. To verify that the extraction is the bottleneck, add a contraint out of the transformer of @FALSE so nothing passes to the target and then see what the speed is.
by chulett
Tue Oct 07, 2014 11:23 am
Forum: General
Topic: Sequence - Checkpoints - Restartability
Replies: 7
Views: 2240

Make sure your child sequences abort as well when there's a problem. That will be communicated upstream so your main sequence can be aborted as well. Then a restart will find its way back down the rabbit hole to where it needs to restart no matter how deep it needs to go. :wink:
by chulett
Tue Oct 07, 2014 9:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: NULL Handling in Runtime Column Propagation
Replies: 10
Views: 6340

Yup, already noted that. However, a default value will only help if you leave the column out of the DML. If you send a NULL, that's what it will attempt to insert.
by chulett
Tue Oct 07, 2014 7:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: NULL Handling in Runtime Column Propagation
Replies: 10
Views: 6340

Specify for us what kind of "null handling" you want to do and then perhaps people can let you know if there is a way to handle that under RCP.
by chulett
Tue Oct 07, 2014 5:55 am
Forum: General
Topic: Sequence - Checkpoints - Restartability
Replies: 7
Views: 2240

There are no "performance impacts" for using checkpoints in a sequence job. And I can't imagine the need to re-invent the wheel or the additional complexity that would add when almost literally all you have to do is check a box. Everything will automatically get a checkpoint but you do hav...
by chulett
Mon Oct 06, 2014 7:13 am
Forum: General
Topic: PERMISSIONS
Replies: 6
Views: 1415

Right, what you posted doesn't change my answer as that is what controls file creation permissions.
by chulett
Mon Oct 06, 2014 7:08 am
Forum: General
Topic: To know the impact of DS8.1, after migrating oracle 12C
Replies: 1
Views: 1211

What "Oracle database" are you upgrading? Are you talking your XMETA repository, your target / sources, both?
by chulett
Sun Oct 05, 2014 7:51 am
Forum: General
Topic: PERMISSIONS
Replies: 6
Views: 1415

http://en.wikipedia.org/wiki/Umask

Set per user. On UNIX it is typically set in a user's .profile but for DataStage it would be in the dsenv file.
by chulett
Sun Oct 05, 2014 7:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: v8.5 - Error Compiling Parallel Transformer
Replies: 3
Views: 3791

Excellent... thanks for posting that.