Search found 53125 matches

by ray.wurlod
Tue Dec 09, 2008 3:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error on SET.FILE.MAP RT_BP3 NONE FORCE command (Failed to s
Replies: 15
Views: 9891

That is my understanding. Of course any developer can override them in a job.
by ray.wurlod
Tue Dec 09, 2008 3:37 am
Forum: General
Topic: Passing Prj Parameters to Job Parameters
Replies: 5
Views: 1743

You don't need a separate "job level" parameter. You can use the environment variable job parameter directly anywhere you can use a "job level" job parameter.
by ray.wurlod
Tue Dec 09, 2008 1:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error in a simple job
Replies: 6
Views: 1327

Re: Error in a simple job

jaysheel wrote:It was working fine few weeks ago.

But suddenly its not working now and getting aborted with the following error message.

Added field has duplicate identifier()
OK, what has changed?
by ray.wurlod
Tue Dec 09, 2008 1:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Row generator and modify stage question
Replies: 7
Views: 2888

The initial value of COL4 is not a timestamp.
by ray.wurlod
Tue Dec 09, 2008 1:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Inserting information into DS_AUDIT
Replies: 9
Views: 2674

Oh, yuk. An old Pickie approach! You can do it all with SQL. The second table is a regular table, as noted. Dynamic normalization is accomplished by specifying the table name and the association name, separated by an underscore. For example: SELECT * FROM DS_AUDIT_MODS ; This will only yield the pri...
by ray.wurlod
Tue Dec 09, 2008 1:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage Server Installation issue on Solaris 10
Replies: 1
Views: 825

The error is from cpio. Get another copy of the software. Somewhere in the image you have a file header is invalid.
by ray.wurlod
Tue Dec 09, 2008 1:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error on SET.FILE.MAP RT_BP3 NONE FORCE command (Failed to s
Replies: 15
Views: 9891

That's not the point. The NLS administrator is the user ID that started DataStage (and therefore owns the NLS shared memory segment).
by ray.wurlod
Tue Dec 09, 2008 1:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Parallel to Server Best Practices
Replies: 3
Views: 1181

Most of the sites where I've worked use sequential files to stage data; a few use database tables and a few use hashed files. There are advantages to each. I prefer sequential files, because they're fastest, but the other methods do allow you to set up things like security and integrity constraints ...
by ray.wurlod
Mon Dec 08, 2008 4:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unicode text file
Replies: 2
Views: 1431

Unicode and UTF-8 are not the same.

Try using a "pure Unicode" map. Or save in UTF-8 format from Excel. Or use an appropriate Korean map in both applications.
by ray.wurlod
Mon Dec 08, 2008 4:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Inserting information into DS_AUDIT
Replies: 9
Views: 2674

Yes it's easy to do, but the fact that your audit table is editable would violate your SOX requirements, at least for a vigilant auditor. Therefore the separate table is probably better. It would need to be keyed by KEY, INSTANCE and DTM. Make use of dynamic normalization to find the appropriate row...
by ray.wurlod
Mon Dec 08, 2008 4:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Row generator and modify stage question
Replies: 7
Views: 2888

Please post the generated OSH so we can see what the generator operator is actually being asked to do.
by ray.wurlod
Mon Dec 08, 2008 4:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Data flow cycle detected among operators in step
Replies: 4
Views: 2632

This particular problem is very easily solved with a server job!
by ray.wurlod
Mon Dec 08, 2008 4:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Data flow cycle detected among operators in step
Replies: 4
Views: 2632

:arrow:
Looping in the Transformer stage is in the roadmap for DataStage. This means "beyond version 8.1" with no particular promise on when it will be available.
by ray.wurlod
Mon Dec 08, 2008 3:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Last calender date
Replies: 8
Views: 3959

How about a simple expression to generate the last day of the month (perhaps in a stage variable), and build the new date from that? Don't forget to handle leap year (perhaps a separate stage variable).
by ray.wurlod
Mon Dec 08, 2008 3:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Pass Input Column Value to Wrapper Stage
Replies: 2
Views: 1448

Not possible. DataStage passes the row. If only this column is in that row, then that might be one way. Otherwise, your wrapped program could use the metadata to extract the particular column from the row.