Search found 53125 matches
- Wed Feb 06, 2008 7:48 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Data extract from source
- Replies: 5
- Views: 1624
- Wed Feb 06, 2008 3:40 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Unable to View the native characters in sequential file
- Replies: 5
- Views: 1098
- Wed Feb 06, 2008 3:38 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Capturing rejected records
- Replies: 13
- Views: 4409
Yes, but the UNIX "black hole" is /dev/null, not NULL. In Windows it's .\NUL (there is one in every folder). Hmm, maybe that tells us something about the O/S! I still prefer the Copy stage. Add an annotation and/or a description in the Copy stage to alert the next developer to what you intend by hav...
- Wed Feb 06, 2008 3:36 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: how to enable TRACING on parallel/server jobs individually?
- Replies: 3
- Views: 1556
Parallel jobs can be compiled in trace mode, in which case all column values on all links are traced using Peek events in the log (hint: don't run very many rows!). Active stages in server jobs can be traced via the Tracing tab on the Job Run Options dialog when submitting a job run request. There a...
- Wed Feb 06, 2008 3:32 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: tracing log from director using parallel routines
- Replies: 8
- Views: 2704
- Wed Feb 06, 2008 3:29 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: convert char to date
- Replies: 10
- Views: 2391
Code: Select all
StringToDate(InLink.Eff_Year : "-" : InLink.Eff_Month : "-01")- Wed Feb 06, 2008 3:28 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Capturing rejected records
- Replies: 13
- Views: 4409
- Wed Feb 06, 2008 3:25 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Modify - String_To_Timestamp
- Replies: 8
- Views: 3203
Don't you need percent signs on the time components in the format string also?
Code: Select all
%yyyy-%mm-%dd %hh:%nn:%ss
^ ^ ^- Wed Feb 06, 2008 3:20 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: PRINTER memory segment removed
- Replies: 7
- Views: 1944
Search to learn the cause. Then take appropriate steps to prevent. Run dsrpcd. Don't run the script under different user IDs at too short an interval.
- Wed Feb 06, 2008 3:17 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Tab File column validations
- Replies: 2
- Views: 778
Write out the precise specification of what you want to do. You will, as Arnd identified, be reading rows from the files as single strings. Therefore you could use one of the comparison stage types for the column headings question, having dumped the table column names into a file. Why does it matter...
- Wed Feb 06, 2008 3:12 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: how can we add parameters in transformer stage
- Replies: 17
- Views: 2703
- Wed Feb 06, 2008 3:09 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Environiment parameters for DB2 Enterprise Stage
- Replies: 1
- Views: 620
- Wed Feb 06, 2008 3:08 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: convert from char data type to date data type
- Replies: 3
- Views: 1484
- Wed Feb 06, 2008 3:04 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Data extract from source
- Replies: 5
- Views: 1624
For something that simple, you could nest the Field functions.
The MatchField() function can also be used here.
Code: Select all
Field(Field(InLink.MyString, "-", 2, 1), "^", 1, 1)The MatchField() function can also be used here.
Code: Select all
MatchField(InLink.MyString, "0X'^'0X'-',0X",3)- Wed Feb 06, 2008 3:01 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Oracle Stage succeeds but do not execute all sql request
- Replies: 9
- Views: 2143