Search found 42189 matches

by chulett
Tue Jan 22, 2013 7:32 am
Forum: General
Topic: Convert to day
Replies: 11
Views: 2431

Probably invalid syntax. "Returned value = 0 OR 1" should in reality be "Returned value = 0 or returned value = 1" and I'm guessing it wasn't. That and the Field Mark you'd have to deal with in any Execute Command result.
by chulett
Tue Jan 22, 2013 12:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem reading a sequential file
Replies: 7
Views: 2281

No field delimiters = fixed width file = char fields of a constant size. No varchars to be had here.
by chulett
Mon Jan 21, 2013 5:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to convert each row into a column
Replies: 19
Views: 5256

That would have been awesome information to include in your first post, don't you think?
by chulett
Mon Jan 21, 2013 11:44 am
Forum: General
Topic: Design a job with infinite loop
Replies: 10
Views: 2984

That's crazy talk, as noted I would never design anything of the sort. However... maybe that's just me. :P
by chulett
Mon Jan 21, 2013 11:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to convert each row into a column
Replies: 19
Views: 5256

OK, hold on... according to what you posted that's exactly what you need to do. I am not sure if vertical pivot works in this case because from 11th row till end of the file the data should go into one column. So are you saying that the entire file should be converted into a single record? :?
by chulett
Mon Jan 21, 2013 8:13 am
Forum: General
Topic: Design a job with infinite loop
Replies: 10
Views: 2984

Ok... 1 to 99999, then what happens? :?
by chulett
Sat Jan 19, 2013 9:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Difference between 2 dates
Replies: 2
Views: 1392

FYI - that function returns just the date from a DATE field which is an Oracle data type that includes the time. Technically it returns the date with the time set to midnight so again (technically) they are equivalent when your time portion is set to midnight. Since you are mentioning their "fo...
by chulett
Sat Jan 19, 2013 8:36 am
Forum: General
Topic: Design a job with infinite loop
Replies: 10
Views: 2984

There is no such thing as an "infinite loop" in a Sequence job, nor is it a good idea to run one 24x7. At the very least have it stop once a day and then schedule it to restart shortly thereafter.
by chulett
Fri Jan 18, 2013 11:06 am
Forum: General
Topic: Scheduling One Sequencer Job
Replies: 6
Views: 1180

Does it need to run immediately when new rows are inserted? Or can it run periodically and process any new rows it finds then?
by chulett
Fri Jan 18, 2013 11:04 am
Forum: General
Topic: How to trap the exit status code value of a dsjob command ?
Replies: 1
Views: 1013

You don't want -jobstatus as that reflects the value the job returned. You should be able to use -wait for a simple 0/1 return status, assuming you want to wait for the job to complete, that is.
by chulett
Fri Jan 18, 2013 9:18 am
Forum: General
Topic: Exception Handler: Special character in $ErrMessage
Replies: 3
Views: 1959

Field Mark, I would assume. Try removing @FM from the message.
by chulett
Fri Jan 18, 2013 8:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: OracleConnectorPX stage to run PL/SQL
Replies: 1
Views: 1162

You can't. Strangely enough, I just had this exact same conversation with a co-worker yesterday. All of the MERGE processing happens inside the database completely out of sight of DataStage, all it knows about is the one record that triggered the procedure / anonymous block. Perhaps it could be engi...
by chulett
Fri Jan 18, 2013 8:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dataset being deleted - while using Change Apply
Replies: 5
Views: 1756

Understood. Have you opened a support case?
by chulett
Thu Jan 17, 2013 7:14 pm
Forum: General
Topic: Replace data on Image
Replies: 3
Views: 1224

I think one of the problems is they don't know where or even if there is anything in the image that may need to be masked. That's the first piece of the puzzle that needs to be solved - finding the text data in an image and then deciding if it needs to be masked. Then comes the image replacement / m...
by chulett
Thu Jan 17, 2013 7:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: trouble using Oracle hints
Replies: 2
Views: 2735

I'm curious what makes you think the hint is an issue. Are you saying that if you remove the hint that it runs correctly?