Search found 15603 matches

by ArndW
Mon Nov 22, 2010 2:34 am
Forum: General
Topic: Multiple instance
Replies: 3
Views: 1540

I was sure that multi-instance jobs would have at least one chapter dedicated to them in the documentation but a quick search didn't locate that chapter. DataStage initially did not have multiple job instances and the rule was that one job could only run in a single instance at one time. But for job...
by ArndW
Mon Nov 22, 2010 2:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: AGE BAND lookup
Replies: 5
Views: 1654

In your lookup stage in the bottom left box, specify "Key Type" as "Range" in order to do a range lookup.
by ArndW
Fri Nov 19, 2010 8:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: null_field length (0) must match field's fixed width (14)
Replies: 8
Views: 10166

In the definitions of your import stage (is this a "column import" stage?) you will have incorrectly set the null_field length to 0, which is not allowed in a fixed-width timestamp field. Since this is a strictly typed field, you will have to supply a legal timestamp string value as the de...
by ArndW
Fri Nov 19, 2010 8:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to start Orchestrate
Replies: 4
Views: 3497

It would seem that you don't want to use the recommended Search function before posting.
That error message, particularly the "APT_PMwaitForPlayersToStart" is found in 23 threads.
by ArndW
Fri Nov 19, 2010 8:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can't login the Datastage Server and The connection is broke
Replies: 14
Views: 6804

The output of your "ps -ef | grep dsrpcd" command shows that the rpcd is not running on your machine, which explains why you cannot login. Did you reboot the DataStage server? If yes, and the "dsrpcd" is not running, then attach to the DataStage home directory (usually "cd $...
by ArndW
Fri Nov 19, 2010 8:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can't login the Datastage Server and The connection is broke
Replies: 14
Views: 6804

zhulinqingfeng2 wrote:...I can't open the "http://myserver:9080"...
Ray has already posted that this functionality is not available at V7, just from V8 onwards. I didn't notice that you were using the previous version. Luckily, this type of problem is simpler to debug at your version 7.
by ArndW
Fri Nov 19, 2010 8:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to Convert Uint64 to Int64
Replies: 7
Views: 10731

I did a quick look into the Parallel Job Developers Guide and found no explicit int32 to int64 function.
by ArndW
Fri Nov 19, 2010 8:14 am
Forum: Information Analyzer (formerly ProfileStage)
Topic: Data Rule Definition like 'Date1 < Date2+Period'
Replies: 5
Views: 2024

I just realized that this was a IA question, not a normal DataStage job question. I should, but won't, redact my earlier post. Sorry.
by ArndW
Fri Nov 19, 2010 8:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Null Handling for multiple columns in single record
Replies: 2
Views: 1031

"Throwing an exception" is a bit uncertain in DataStage terms. But in someething like a source stage where you are reading from an external stream then each row is rejected on error only once and only one error reason is given.
by ArndW
Fri Nov 19, 2010 8:11 am
Forum: General
Topic: How to mail rejected records..
Replies: 18
Views: 5600

The Search functionality is quite powerful and this topic with the keyword "DSSetUserStatus" will give you lots to look at.
by ArndW
Fri Nov 19, 2010 8:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: i am unable to insert the data into table
Replies: 5
Views: 2089

Re: i am unable to insert the data into table

boppanakrishna wrote:...
ODBC_Enterprise_6,0: Fatal Error: Not bounded length.
...
What column definitions do you have in DS and what are their respective lengths?
by ArndW
Fri Nov 19, 2010 4:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: There are no more pages available in filegroup DEFAULT
Replies: 1
Views: 889

This message comes from the database, I would suggest talking to your SQLServer DBA in order to have them fix the problem on the database end.
by ArndW
Fri Nov 19, 2010 4:31 am
Forum: General
Topic: How to mail rejected records..
Replies: 18
Views: 5600

You have 2 basic approaches to take. a) If your job is called using a job sequence, you can pass back a user status to the calling sequence, or have the sequence check for existence of the error file, and then send a mail from the sequence. b) You can use the "After-Job Routine" capability...
by ArndW
Fri Nov 19, 2010 4:28 am
Forum: Information Analyzer (formerly ProfileStage)
Topic: Data Rule Definition like 'Date1 < Date2+Period'
Replies: 5
Views: 2024

What does "Period" mean? Does a "10" mean 10 days, 10 years, 10 months or something else?
by ArndW
Fri Nov 19, 2010 4:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to Convert Uint64 to Int64
Replies: 7
Views: 10731

None that won't give you the warning (this is a good example of where a job level message handler is very useful). You can convert an unsigned int32 to a signed int64 without a warning, but an unsigned int64 can potentially not fit into a signed int64 and thus the warning.