Search found 53125 matches

by ray.wurlod
Tue Oct 10, 2006 2:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup Fileset - SMP memory usage.
Replies: 1
Views: 744

1. It's smart enough to share only one copy.
2. I'm not aware of any locking/blocking strategy. But, then again, I haven't tried it. I know it's not possible in the same job, but that's managed (prevented) by a pre-compilation sanity check.
by ray.wurlod
Tue Oct 10, 2006 2:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: String to nullable Decimal -"Null string argument"
Replies: 3
Views: 3200

What are the data types of your stage variables?
by ray.wurlod
Tue Oct 10, 2006 2:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential stage.
Replies: 2
Views: 1060

Making the file a delimited format will solve your padding problem, however it may not be acceptable to the consumer of the file. Delimited is usually the appropriate choice when variable-length data have to be stored in a text file.
by ray.wurlod
Tue Oct 10, 2006 2:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Monitoring Jobs
Replies: 7
Views: 2469

Is there a way to export the log files out of datastage to create a seperate local log file (txt format) ? You can create a DataStage server job to achieve this. The only tricky part is determining the log hashed file name; you can do this using another server job (SELECT JOBNO FROM DS_JOBS WHERE N...
by ray.wurlod
Tue Oct 10, 2006 2:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: RE:Hard Code Value
Replies: 4
Views: 1524

In the Lookup stage you can return the lookup key. You can not assign (derive) values in output columns. Downstream, in a Modify or Transformer stage, test whether that returned key is null; if so, your lookup failed, otherwise your lookup succeeded. Of course, if your Lookup stage has a rejects lin...
by ray.wurlod
Tue Oct 10, 2006 2:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: View Data fails for large number of records
Replies: 2
Views: 1541

Do you get any error message?

I suspect that the client machine is running out of memory. Monitor memory usage (Task Manager, always on top) when attempting a large View Data.
by ray.wurlod
Tue Oct 10, 2006 2:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: date error
Replies: 6
Views: 1331

2055/00/00 is not a date. Maybe that's the issue. Try 2055/01/01.
by ray.wurlod
Tue Oct 10, 2006 2:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Source and Target have DRS stages data is not loading.
Replies: 14
Views: 2607

The only things that prevent writing to sequential file are constraints, permissions and "file system full" conditions.
by ray.wurlod
Tue Oct 10, 2006 1:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Weird Errors
Replies: 12
Views: 4136

Not necessarily. The layout of the error message suggests that the key value used contains two "mark characters". By default, hashed file keys are not permitted to have mark characters (dynamic array delimiter characters) in them, with the exception of the "separator character" for hashed files with...
by ray.wurlod
Tue Oct 10, 2006 1:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Subroutine failed to complete successfully(30107)
Replies: 2
Views: 2285

If it's not that, then maybe either your system is overloaded (the subroutine did not complete within its allotted time) or the Repository indexing may need to be rebuilt.
by ray.wurlod
Tue Oct 10, 2006 1:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: User-Defined SQL Query file in DRS Stage
Replies: 7
Views: 1285

Is there a "following" database message in the log?
Have you made sure that the executing user has at least r-x permission to every directory in the path?
by ray.wurlod
Tue Oct 10, 2006 1:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to include Header to file
Replies: 4
Views: 1838

Did you simply want to combine them, or do you also want to verify that the number of detail records is as recorded in the header?
by ray.wurlod
Tue Oct 10, 2006 1:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Standard Deviation in DataStage?
Replies: 3
Views: 2037

The Aggregator stage performs standard deviation as one of the aggregate functions.

Make sure there are no nulls in the column being processed.
by ray.wurlod
Tue Oct 10, 2006 1:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performance Issue (DB2/400 to Oracle 9i) Extraction
Replies: 5
Views: 1904

Why do you assert that the performance issue (whatever is meant by "performance") is with the extraction phase? Have you proven this?
by ray.wurlod
Tue Oct 10, 2006 1:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performance Techniques from JDE Side
Replies: 1
Views: 621

What stage type are you using for extraction?