Search found 53125 matches
- Fri Jan 26, 2007 6:26 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Renaming and deleting a dataset
- Replies: 34
- Views: 12192
- Fri Jan 26, 2007 6:23 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Change Data Capture
- Replies: 22
- Views: 5045
- Fri Jan 26, 2007 6:22 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Merging files
- Replies: 9
- Views: 1874
- Fri Jan 26, 2007 6:19 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: index
- Replies: 8
- Views: 1954
- Fri Jan 26, 2007 6:16 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Filter stage does not work
- Replies: 9
- Views: 1684
One task, one stage. (Transformer excepted but, if you examine the code it generates, there's a heap of Orchestrate operators that might appear there.) The Transformer stage can, of course, do what the Filter stage does in addition to the transformation. So, if you lose the Filter stage and set up m...
- Fri Jan 26, 2007 5:57 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: The DateGenericToODBCWithTime transform
- Replies: 6
- Views: 1725
- Fri Jan 26, 2007 5:55 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Number of virtual processors
- Replies: 9
- Views: 1998
Re: Number of virtual processors
I will to increase the number of virtual processors in DataStage Server. I think that license is by number of processors, so can I have some problem if I increase the number of virtual processors? Regards, Fernando What - precisely - do you mean by virtual procesors? DataStage is licensed by the nu...
- Fri Jan 26, 2007 5:45 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Tranformer Constraint Expressions
- Replies: 36
- Views: 13920
- Fri Jan 26, 2007 5:23 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Datastage Redbrick load
- Replies: 4
- Views: 1676
It could be security on the target (Red Brick) machine. They may have blocked telnet (port #23). You will need to ask whether this is the case. If it is, you will need to work a different way, and it may involve creating a shell script to invoke "secure telnet" (SSH), which uses port #22, to invoke ...
- Fri Jan 26, 2007 5:16 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Time Calculation
- Replies: 3
- Views: 900
Why not monitor it in the routine itself? The same routine that "keeps running a job until the job gets some input". You can pick up the job start time (use DataStage macro perhaps), and the current time. That ("keeps running a job until the job gets some input") is an interesting concept. Can you p...
- Fri Jan 26, 2007 5:06 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: calling c dll functions from Datastage
- Replies: 7
- Views: 1949
DataStage server jobs on Windows can use functions exposed in ActiveX controls. You do not need to use the GCI explicitly to call these. Beware, though, that performance sucks. There is a mechanism for calling other C functions, but in this case you do need to set up "GCI subroutine definitions". Th...
- Fri Jan 26, 2007 5:01 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Compile error - Subroutine failed to complete successfully
- Replies: 19
- Views: 7898
Note that Arnd's method is only checking the Transformer stage(s); it is NOT a way to compile jobs on the server. But, in our experience, it is in Transformer stages that most compilation errors occur. Nonetheless, it could be difficulties with the Repository structures themselves. What happens if y...
- Fri Jan 26, 2007 4:57 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Re: The decimal coming from source but it is char
- Replies: 2
- Views: 758
- Fri Jan 26, 2007 4:51 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Transforming Several XML Docs into one Flat File
- Replies: 1
- Views: 652
Welcome aboard. :D Look at the Folder stage; this may do what you require. Search the forum for techniques to use if the XML files are very large. You could also construct multiple jobs (for the different sets of elements), and set the Sequential File (target) to append rather than overwrite. Help o...
- Fri Jan 26, 2007 4:47 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: pass value between jobs
- Replies: 19
- Views: 6725
For one value, I'd still recommend the user status area. Use a server job (or a fully sequential parallel job that includes a BASIC Transformer) to obtain that value and store it in its user status area. Use the parent job sequence to retrieve that job's user status value, and supply that as the val...