Search found 53125 matches
- Fri Mar 28, 2008 3:53 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: UniVerse SQL - List Job Parameters
- Replies: 13
- Views: 7539
1. You need to define it in the table definition. When you check "supports multi-valued fields" (or whatever it's called) three additional columns become available in the Columns grid. It's all explained in the Help. 2. Dynamic normalization means using the "Normalize on" check box or an equivalent ...
- Fri Mar 28, 2008 3:09 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: IsValid() problems with non-standard dates
- Replies: 21
- Views: 5839
Perhaps you could use a BASIC Transformer stage with this IsValid() function !
- Fri Mar 28, 2008 2:25 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Getting error deadlock detected while waiting for resource.
- Replies: 1
- Views: 1449
You are trying to update the same table as you are selecting from ? The (self-)deadlock is in the database. Consider a better design, where you are not causing a deadlock. You might consider an array size and transaction size of one row (effectively "auto commit"). Or you could use two jobs - one to...
- Fri Mar 28, 2008 2:23 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: IsValid() problems with non-standard dates
- Replies: 21
- Views: 5839
Fair enough - I'm at a server-only site at the moment, so couldn't check, but you hadn't mentioned it. There is no mention in Appendix A of Parallel Job Developer's Guide (Functions) about a square-bracketed format string being available with the IsValid() function - and this is the only reference t...
- Fri Mar 28, 2008 2:18 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: filter
- Replies: 1
- Views: 750
- Fri Mar 28, 2008 2:16 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: APT_PM_CONDUCTOR_TIMEOUT
- Replies: 5
- Views: 1386
- Fri Mar 28, 2008 2:14 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: To split the header,body,footer of a flat file
- Replies: 5
- Views: 1497
Re: To split the header,body,footer of a flat file
Hi, Can anyone let me know if Row splitter is the only stage through which a file with a header,body and footer can be split seperately or is there any other stage/way through which the file can be split. Thx, Rajee For a single line header, "first line is column names" checked will remove the head...
- Fri Mar 28, 2008 2:13 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: UniVerse SQL - List Job Parameters
- Replies: 13
- Views: 7539
Have you defined the pertinent multi-valued columns to be multi-valued in your table definition? If you have, you should be able to use the "normalize on" check box in a UV or Hashed File stage. But they really should be associated for this to work properly. You could try adding the name of the para...
- Fri Mar 28, 2008 12:54 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Time Validation
- Replies: 4
- Views: 1043
WHAT error ?!!!! There is an IsValid() function for parallel jobs that ships with DataStage. That's not the one. There is an IsValid() function for server jobs that was published on DSXchange some time back. That is the one. I just did a search for it (all words "IsValid server" with me as the autho...
- Fri Mar 28, 2008 12:51 am
- Forum: General
- Topic: Sort Stage Fatal Error.....
- Replies: 6
- Views: 3158
OK, it's the Sort stage srcClaims, and the problem has occurred on node numbers 0,1,2 and 3. This suggests that there's something wrong with how the Sort stage is set up - something that is syntactically correct (so the job compiles) but which the tsort operator can not manage. Can you thoroughly in...
- Fri Mar 28, 2008 12:16 am
- Forum: General
- Topic: Sort Stage Fatal Error.....
- Replies: 6
- Views: 3158
- Thu Mar 27, 2008 11:57 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Reading the DSJobReport file
- Replies: 10
- Views: 3698
- Thu Mar 27, 2008 11:56 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Reading the DSJobReport file
- Replies: 10
- Views: 3698
- Thu Mar 27, 2008 11:55 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Time Validation
- Replies: 4
- Views: 1043
Several. If you want to create a routine, it's very easy - apply an Iconv() function to the string then test the result of the Status() function. Otherwise search the forum for an IsValid() function for server jobs - I believe it will work if there are no delimiters. Otherwise perform range tests on...
- Thu Mar 27, 2008 11:53 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Job hanging problem
- Replies: 1
- Views: 881
Welcome aboard. NOTIFY ON is an important setting - it allows the job to be notified when the Transformer stages (which run in separate process(es)) finish. Get "them" to reinstate it. With NOTIFY OFF in effect, notifications are not received immediately, which can cause the job to remain in a runni...