Search found 53125 matches

by ray.wurlod
Thu Aug 18, 2011 12:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: execution mode for Oracle Enterprise stage
Replies: 3
Views: 1756

hi_manoj wrote:Is there any way to read the table (not partition) in parallel execution mode,
Not if you're using the Oracle Enterprise stage. "Maybe" if you're using an Oracle Connector stage.
by ray.wurlod
Thu Aug 18, 2011 12:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: index constraint
Replies: 7
Views: 2916

You missed the value comparison for the first Index() function. And you probably want "And" rather than "Or" if you want to exclude these records (it's not clear what you mean by "filter"). Index((to_transf._ID), "___Req",1) = 0 And Index((to_transf._ID), &quo...
by ray.wurlod
Thu Aug 18, 2011 12:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Cannot open file RT_BP6487.O
Replies: 14
Views: 4036

My bad. You should have quoted the names in the LIST.ITEM commands. But the INSERT statements failed safe. Having made your changes, can you open the job in Designer? If not, what error message do you now get? Can you also find to who deleted RT_BP6487.O and castigate them severely? You might also t...
by ray.wurlod
Thu Aug 18, 2011 12:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Cannot open file RT_BP6487.O
Replies: 14
Views: 4036

My bad. You should have quoted the names in the LIST.ITEM commands. But the INSERT statements failed safe. Having made your changes, can you open the job in Designer? If not, what error message do you now get?

Can you also find to who deleted RT_BP6487.O and castigate them severely?
by ray.wurlod
Wed Aug 17, 2011 3:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Join stage: Need to retain the column key from both tables
Replies: 4
Views: 1446

Yes. Make an additional column in Table B that is a copy of the key and map that to the output.
by ray.wurlod
Wed Aug 17, 2011 3:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: surrogate key generator stage
Replies: 4
Views: 1660

The second person personal pronoun in English is spelled "you". U is one of our posters - it's a Burmese name.
by ray.wurlod
Wed Aug 17, 2011 3:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Cannot open file RT_BP6487.O
Replies: 14
Views: 4036

This may be recoverable. Does RT_BP6487.O exist in the project directory? (It will be a sub-directory.) If it does, all you need to do is to re-create the VOC entries. INSERT INTO VOC (F0, F1, F2, F3) VALUES ('RT_BP6487', 'F', 'RT_BP6487', 'D_DSG_BP.O'); INSERT INTO VOC (F0, F1, F2, F3) VALUES ('RT_...
by ray.wurlod
Wed Aug 17, 2011 3:32 pm
Forum: General
Topic: Extracting the list of jobs that are failed in a server
Replies: 3
Views: 1122

Open Director. Disable display of categories. Sort by status. Select the aborted jobs and adjust the window so that only these are showing. From the Project menu choose Print, within the print dialog choose print to file.
by ray.wurlod
Wed Aug 17, 2011 3:28 pm
Forum: IBM QualityStage
Topic: Blocking using First Letter of First name
Replies: 1
Views: 861

You can generate any value you need in an upstream Transformer stage. For a certain subset of functions, such as substring, you could also use a Modify stage.
by ray.wurlod
Wed Aug 17, 2011 6:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: execution mode for Oracle Enterprise stage
Replies: 3
Views: 1756

Yes, that's how the Oracle Enterprise stage works, and indeed how the Oracle Enterprise stage is documented as working.
by ray.wurlod
Wed Aug 17, 2011 6:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: BIGINT in DRS
Replies: 1
Views: 1052

Have you updated the version of MySQL too?
by ray.wurlod
Wed Aug 17, 2011 1:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error occured trying to create a new thread/process
Replies: 1
Views: 1173

This seems to be an error originating in Netezza. Please check the Netezza manuals for a description of this error. Also check (or have your UNIX System Administrator check) whether the process table on the system had become full.
by ray.wurlod
Wed Aug 17, 2011 1:08 am
Forum: General
Topic: Script for security purpose
Replies: 3
Views: 967

It's not possible without a severe amount of hacking of the repository database. UniVerse version 9.6 did not support triggers on hashed files (this became available in UniVerse version 10.0 but, by that time, the DataStage engine had diverged from UniVerse). The only way to intercept updates to the...
by ray.wurlod
Tue Aug 16, 2011 10:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ETL Job v/s Stored Procedure
Replies: 3
Views: 1885

Then it's almost certain that performing the join in the database - whether using SQL from DataStage or using a stored procedure - will be faster than performing the join in DataStage itself. If the SQL from DataStage is exactly the same as the SELECT statement executed by the stored procedure, then...