Search found 15603 matches
- Fri Oct 06, 2006 8:00 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: jobs compare
- Replies: 13
- Views: 3692
- Fri Oct 06, 2006 7:04 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: utility run job: get return values
- Replies: 20
- Views: 7453
Stivazzi, you have now had 3 people comment that this is not the way DS works and that it cannot be done this way. I don't know how much clearer the responses can be UtilityRunJob is a function whose effect (return value) is a dynamic array which contains information about the job's run status and t...
- Fri Oct 06, 2006 6:58 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: About data type conversion
- Replies: 6
- Views: 1398
- Fri Oct 06, 2006 2:45 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: utility run job: get return values
- Replies: 20
- Views: 7453
- Fri Oct 06, 2006 2:08 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Proces id..
- Replies: 4
- Views: 1451
- Fri Oct 06, 2006 2:06 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: utility run job: get return values
- Replies: 20
- Views: 7453
- Fri Oct 06, 2006 2:03 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Version Value for every run
- Replies: 2
- Views: 863
- Fri Oct 06, 2006 1:53 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: utility run job: get return values
- Replies: 20
- Views: 7453
I wish I had the docs in front of me, but I suspect they state a "dynamic array" which is quite different from an array. Calling another job from a transform stage using this routine is probably not the best solution for your problem, particularly since it is quite slow (several seconds per row at b...
- Fri Oct 06, 2006 1:41 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: utility run job: get return values
- Replies: 20
- Views: 7453
- Fri Oct 06, 2006 1:37 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Regarding Data
- Replies: 4
- Views: 1052
This is a great interview question. Try answering Rejected data in server jobs is collected in special airtight DataStage "Containers" so that the bad data doesn't corrupt the good data. Memory leaks in these containers can cause data corruption on hard drives. Once these containers are 80% full or ...
- Fri Oct 06, 2006 1:26 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Cannot import one job
- Replies: 5
- Views: 1418
If you cannot see the job in the repository yet importing the DSX fails then the first step I would suggest is to rebuild your indices. You will need to enter TCL or go via the ADMINistrator to issue the command, make sure you are the only person using DataStage and then enter DS.TOOLS and enter opt...
- Fri Oct 06, 2006 1:20 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Reading Packed Data from Db2 table
- Replies: 4
- Views: 1523
- Thu Oct 05, 2006 2:15 pm
- Forum: General
- Topic: Mouse Scrolling
- Replies: 4
- Views: 3371
Welcome to DSXChange, jguldy! It isn't a function of DataStage; the mouse scrolling function just issues the windows commands to go up or down {n} lines. It must be some windows setting. Can you scroll in a Word-For-Windows or notepad session using the mouse with the same userid that won't work in a...
- Thu Oct 05, 2006 12:40 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: fractional truncation issue
- Replies: 9
- Views: 6086
- Thu Oct 05, 2006 12:02 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to PAD with Leading Zeroes
- Replies: 5
- Views: 2782
I can think of a couple of approaches in a transform stage using string functions.
One would be
or to name just two methods.
One would be
Code: Select all
STR('0',10-Len(In.String)):In.Stringor
Code: Select all
RIGHT('0000000000':In.String,10)