Search found 53125 matches

by ray.wurlod
Sun Nov 01, 2015 9:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Why not hash partitioning for lookup stage
Replies: 7
Views: 6544

Using Entire partitioning with a Join stage will give you the Cartesian product of the inputs. You don't want to go there. The remainder of your questions are moot. Believe the documentation. The Join stage requires that its inputs be identically partitioned using a key-based partitioning algorithm ...
by ray.wurlod
Sat Oct 31, 2015 2:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Teradata Connector stage job taking a long time
Replies: 2
Views: 1280

The Lookup File Set not only consumes rows, it builds a hash table index on the data at the same time. If your data contain many distinct values of the column(s) identified as Key, then the work of building the hash table index is quite a lot, and may well be the main cause of the symptom you descri...
by ray.wurlod
Sat Oct 31, 2015 2:30 am
Forum: General
Topic: Backup Full Datastage Project
Replies: 11
Views: 5459

No, it would be a pain to restore.

Use scripting around istool utility, using dsjob commands to generate lists of projects and of artefacts within projects.
by ray.wurlod
Thu Oct 29, 2015 9:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading SQL from a file through ODBC stage
Replies: 5
Views: 2321

Perhaps it needs a trailing semi-colon in the SELECT query.

Perhaps it needs, or does not need, a line terminator in the file.

Experiment with those possibilities.
by ray.wurlod
Thu Oct 29, 2015 9:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML Input - Dataset Output
Replies: 8
Views: 2808

Can you please advise what the actual (hex codes) values are for the first three source characters after the tag? ^Z is 0x1A (which may help you).

It appears that you are not using a compatible character map between source and target.
by ray.wurlod
Thu Oct 29, 2015 9:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Can I Use XMETA to list all hashed file names?
Replies: 2
Views: 3686

Probably. Though it would be far simpler to query DS_JOBOBJECTS.

In either case, the query will not be able to resolve job parameter references without being a lot more complex.
by ray.wurlod
Thu Oct 29, 2015 9:16 pm
Forum: General
Topic: Sequence job not running any job/routine in new project
Replies: 13
Views: 2844

Is <job name> the name of a job invoked from a Job activity? If so, right click on the "Requesting job run" event (with the -> in its text) and choose Related Log to see the actual job log. Report to us what you find there, particularly about its finishing status. You can right click on th...
by ray.wurlod
Thu Oct 29, 2015 8:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: perform an EXCEPT between a flat file and a db2 query
Replies: 3
Views: 1651

You could use the ODBC stage via a driver for text files, perform a Lookup (for example) and direct your attention to the Reject link from the Lookup stage.
by ray.wurlod
Thu Oct 29, 2015 8:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Getting the error in Webservice stage
Replies: 4
Views: 2355

Check your PATH, LD_LIBRARY_PATH and CLASSPATH environment variables.
by ray.wurlod
Thu Oct 29, 2015 8:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Min() Max() from a Sequential file
Replies: 3
Views: 1105

Count the lines and subtract 2 to give the max. Use 2 for the min. This assumes one header and one trailer line.
by ray.wurlod
Thu Oct 29, 2015 8:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML Input - Dataset Output
Replies: 8
Views: 2808

Are you certain that there is no ^Z character in the source data? (Note, too, that this is the DOS end-of-file marker.)
by ray.wurlod
Wed Oct 28, 2015 8:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Why not hash partitioning for lookup stage
Replies: 7
Views: 6544

If you are able to use a Lookup stage in an SMP environment chances are that it will result in a job that finishes faster, because there is no requirement to sort the data. Entire partitioning is managed via shared memory.
by ray.wurlod
Wed Oct 28, 2015 1:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Checksum Stage not giving consistent output
Replies: 5
Views: 3151

I agree with your expectation.

It may be that you have discovered a bug, in which case you report it.

Or it may be that you have RCP enabled on the output link of the stage immediately upstream of the Checksum stage.
by ray.wurlod
Wed Oct 28, 2015 1:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Multi node configuration in standalone installation?
Replies: 7
Views: 2979

That the project has to be cross mounted.
by ray.wurlod
Wed Oct 28, 2015 1:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Extract & Save Unknown Headers
Replies: 1
Views: 783

Read each row of the file as a single VarChar of suitable size (or even unbounded).

Parse and filter in a downstream Transformer stage. Use appropriate substrings (in stage variables) for the first, second and third characters, and perform the logic on those.