Search found 53125 matches

by ray.wurlod
Tue Jan 24, 2012 7:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: db2 enterprise stage is not working in windows env.
Replies: 8
Views: 3669

This has nothing whatsoever to do with DB2. Read the error message carefully - "no remote shell found". DataStage is unable to find or execute a remote shell command through which the conductor process can communicate with player or section leader processes on other nodes. In your particul...
by ray.wurlod
Tue Jan 24, 2012 7:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Warning
Replies: 1
Views: 627

Provide a Null Field Value containing ten characters.

The 4 in your integer definition is bytes, not characters. A 32-bit (four byte) integer can have as many as ten digits.
by ray.wurlod
Tue Jan 24, 2012 2:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: data load problem from teradata source to a dataset
Replies: 1
Views: 605

What's the actual error message? "a wierd problem" (however you spell it) is not useful for diagnosis. You might also post the SQL used, as your fragment just looks plain wrong.
by ray.wurlod
Tue Jan 24, 2012 2:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue reading Dataset
Replies: 2
Views: 970

What's the issue? It's perfectly feasible that an inner join only returns eight rows. This indicates that there are only eight common key values. Likewise a left outer join by its very definition returns all rows from its left input.
by ray.wurlod
Tue Jan 24, 2012 2:49 pm
Forum: General
Topic: stop and start 8.5 services
Replies: 3
Views: 1129

The word you are looking for is "why". There is no such word as "y" in English.
by ray.wurlod
Tue Jan 24, 2012 2:47 pm
Forum: General
Topic: post verification after 8.5 installation
Replies: 6
Views: 2515

The easiest is to examine the History section in Version.xml. This will report SUCCESS or some other status. If the installation includes DataStage, create two jobs, one with a Transformer stage and one without, to verify that your C++ compiler is correctly installed and configured.
by ray.wurlod
Tue Jan 24, 2012 2:44 pm
Forum: General
Topic: stop and start 8.5 services
Replies: 3
Views: 1129

You don't. Who said you did? For example if you want to make a change to uvconfig, it's sufficient to stop only DataStage services.
by ray.wurlod
Tue Jan 24, 2012 2:43 pm
Forum: General
Topic: Number of Projects/Jobs
Replies: 17
Views: 6676

The first dot is a synonym for the source command. Read man source to determine what it does.
by ray.wurlod
Tue Jan 24, 2012 2:41 pm
Forum: General
Topic: Count Jobs in a project (Parallel, Server, Sequencer)
Replies: 8
Views: 5636

Or don't even worry about the values, just report them.

Code: Select all

SELECT JOBTYPEIND, COUNT(*) AS JOB_COUNT FROM DS_JOBS WHERE @ID NOT LIKE '\\%' AND @ID NOT LIKE '//%' GROUP BY JOBTYPEIND;
by ray.wurlod
Tue Jan 24, 2012 2:30 am
Forum: General
Topic: BASIC query
Replies: 10
Views: 1640

It's the same as using a loop, but why code the loop when you know that there are only two lines in the file?
by ray.wurlod
Tue Jan 24, 2012 2:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Surrogate key Issue
Replies: 5
Views: 1309

You can re-initialize the state file.
by ray.wurlod
Tue Jan 24, 2012 2:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to generate the following using data in datastage
Replies: 6
Views: 2426

That's what Eric's solution will give you.
by ray.wurlod
Tue Jan 24, 2012 2:25 am
Forum: General
Topic: BASIC query
Replies: 10
Views: 1640

Neither. This is a question about the programming language, not about job design.
by ray.wurlod
Tue Jan 24, 2012 2:23 am
Forum: General
Topic: Number of Projects/Jobs
Replies: 17
Views: 6676

I can't see where you've sourced the dsenv script.

This is essential before attempting to use the dsjob command.
by ray.wurlod
Tue Jan 24, 2012 12:10 am
Forum: General
Topic: Reading the latest files from input directory
Replies: 9
Views: 2695

What are you trying to do in the activity variable? I do lots of these, and parsing isn't an issue. What do you expect the value output in the activity variable to be?