Search found 53125 matches

by ray.wurlod
Wed May 16, 2007 4:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: unable to open file from location
Replies: 2
Views: 1311

Double check the location of the file that you have specified in the DSN. Check that you have permission to open the file. Size should not be a problem just to open the file.
by ray.wurlod
Wed May 16, 2007 4:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: main_program: Fatal Error: Caught ORCHESTRATE exception in
Replies: 1
Views: 1071

For the field named you have specified a data type of Char or VarChar but have not specified a Precision (length). DataStage does not like Char(0) or VarChar(0).
by ray.wurlod
Wed May 16, 2007 4:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DSGetStageInfo with dataset
Replies: 4
Views: 1926

Does it fail for any other stage types? In server jobs DSGetStageInfo() only works for active stages. Try using DSJ.STAGELIST rather than DSJ.FULLSTAGELIST.
by ray.wurlod
Wed May 16, 2007 4:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to Export a job which has a message handler.
Replies: 15
Views: 5308

Check the third paragraph of my original response.
by ray.wurlod
Wed May 16, 2007 4:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: fixed width file
Replies: 8
Views: 2741

Add Field Width property to each column.
by ray.wurlod
Wed May 16, 2007 4:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Removing Duplicates using stage variables in parallel job
Replies: 5
Views: 1961

Data must be partitioned on the comparison field as noted, and must also be sorted on this field so that comparison values are adjacent.
by ray.wurlod
Wed May 16, 2007 4:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC driver error
Replies: 7
Views: 2099

You can use the score to determine whether your ODBC Enterprise stage is operating in sequential mode. As a general rule, though, it will, for a SELECT statement. So does the Oracle Enterprise stage. This error is coming from the ODBC driver (and not from DB2). Contact Data Direct to see if they can...
by ray.wurlod
Wed May 16, 2007 4:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: File and File Set
Replies: 2
Views: 954

A File Set is a parallel structure. As well as the control file (name.fs) it has its data stored in files on the "resource disk" directories specified for all the processing nodes that the File Set stage uses. A Sequential File stage gives the ability to work with one or more simple sequential files...
by ray.wurlod
Wed May 16, 2007 4:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DS Job Type Identification - Server or PX in Unix
Replies: 7
Views: 1688

For completeness, 1 indicates a mainframe job.
by ray.wurlod
Wed May 16, 2007 4:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Passing parameter values from One Job to Next
Replies: 2
Views: 1079

Not in PX, but you can do it in a job sequence that runs the parallel jobs. You only need to read PARAM_LIST once, and can park the values into user variables if desired.
by ray.wurlod
Wed May 16, 2007 4:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: File with diff record layouts
Replies: 1
Views: 1090

Read all records as one column (VarChar).
Use Transformer stage to identify record type (even by counting the number of delimiters) and direct rows to the appropriate output, parsing into the correct number of columns using the Field() function.
by ray.wurlod
Wed May 16, 2007 4:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routine error
Replies: 4
Views: 1515

Can you please edit that post, encase your code between Code tags and format it? This will make it easier to read.
by ray.wurlod
Wed May 16, 2007 3:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creating DBF and MDX files
Replies: 7
Views: 2980

Unless there's a call available in the ODBC API for creating an MDX file there's no mechanism apparent in DataStage for doing so. Ultimately it appears that you want to effect CREATE INDEX commands from DataStage. Would that be the case? Does dBaseIV support the notion of stored procedures? There is...
by ray.wurlod
Wed May 16, 2007 3:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creating Hashed File
Replies: 4
Views: 1322

You would call CREATE.FILE, CREATE TABLE or mkdbfile through the DSExecute() subroutine.
by ray.wurlod
Wed May 16, 2007 3:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performance
Replies: 6
Views: 1638

IPC, Link Partitioner and Link Collector have had some bad press here. If you're worried about that, use a Transformer stage to implement round robin partitioning (Mod(@INROWNUM,3) for 3 outputs). Enable inter process row buffering if you have two active stages, otherwise enable in process row buffe...