Search found 53125 matches

by ray.wurlod
Tue Feb 12, 2013 3:16 pm
Forum: General
Topic: datastage8.7 installation without c++ compiler
Replies: 7
Views: 3171

Installation process is exactly the same whether or not the compiler is installed.

Of course you will not be able to compile any job that includes a Transformer stage, and you will not be able to compile any Build stage.

When did you move to RSA?
by ray.wurlod
Tue Feb 12, 2013 3:10 pm
Forum: General
Topic: Identifing the decode value of password parameter
Replies: 4
Views: 1420

More particularly, as an ordinary poster I can not mark anyone else's post as Resolved or anything else.
by ray.wurlod
Tue Feb 12, 2013 3:08 pm
Forum: IBM QualityStage
Topic: Error while running a quality stage job
Replies: 3
Views: 3356

Either you have not generated the match frequencies, or you have pointed the job at an empty data set using the match frequencies input link to your match stage.
by ray.wurlod
Tue Feb 12, 2013 4:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Detecting the number of processes from job scores
Replies: 23
Views: 8780

That's correct. In an exam it'll be multiple choice, which should make it a bit easier.
by ray.wurlod
Mon Feb 11, 2013 9:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Null/not null constraint write to different oci
Replies: 1
Views: 2692

Welcome aboard. Constraint expressions in the Transformer stage should be something like: IsNull(InLink.TestField) --> Insert Not(IsNull(InLink.TestField) --> Update An alternative is: IsNull(InLink.TestField) --> Insert Otherwise (check box) --> Update Note that DataStage does differentiate between...
by ray.wurlod
Mon Feb 11, 2013 7:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Detecting the number of processes from job scores
Replies: 23
Views: 8780

You are correct. The score only ever reports player processes. However the exam question may well be interested in all processes.
by ray.wurlod
Mon Feb 11, 2013 7:15 pm
Forum: General
Topic: Execute Command Activity stage Issue
Replies: 7
Views: 8964

Try excaping the backslashes.

Code: Select all

C:\\test\\dummy.ps1 
by ray.wurlod
Mon Feb 11, 2013 1:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Detecting the number of processes from job scores
Replies: 23
Views: 8780

Simply count the processes. [op0,p0] [op1,p0] [op1,p1] [op2,p0] Four player processes. op0 (SEQ_SOURCE) is sequential (one process) op1 (APT_CombinedOperatorController) is parallel (two processes) op2 (SEQ_TARGET) is sequential (one process) Four player processes. Because there are two nodes there a...
by ray.wurlod
Mon Feb 11, 2013 1:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: the call to sqlldr failed the return code = 1
Replies: 4
Views: 2749

I think that's just "how it works" - Oracle throws an error if you invoke sqlldr and provide a stream of 0 records. You should check first whether any records will be selected, and only execute the job if there are.
by ray.wurlod
Mon Feb 11, 2013 1:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fixed width ASCII file - Chinese Chars
Replies: 6
Views: 2195

You cannot trim a double-width character to make it smaller. It's called double width because it has so many strokes that it occupies more space than a regular character. (Or it's deliberately double width for the purposes of beauty in typography, such as the double width space.)
by ray.wurlod
Mon Feb 11, 2013 1:06 pm
Forum: General
Topic: Datastage 7.5 connecting to Oracle 10 G
Replies: 1
Views: 601

Welcome aboard. Let's start with stating that version 7.5 is a very old version now, and that only the client is supported on Window XP. To use Oracle you must have the Oracle client installed and configured (tnsnames.ora in particular). You can add environment variables as required using the Admini...
by ray.wurlod
Mon Feb 11, 2013 1:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Not able to access Oracle DB using DRS stage in Windows OS
Replies: 4
Views: 1893

Have you properly installed Oracle client software on your DataStage server and configured tnsnames.ora (and, possibly, sqlnet.ora)?
by ray.wurlod
Mon Feb 11, 2013 1:56 am
Forum: General
Topic: Charecter "[" is single byte or multibyte chare
Replies: 1
Views: 964

Single. You can find it even in a 7-bit ASCII table.
by ray.wurlod
Mon Feb 11, 2013 12:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Complex Flat File stage with Variable Length rows
Replies: 14
Views: 9061

That should be handled OK, provided you've specified that "" is to be treated as NULL.
by ray.wurlod
Mon Feb 11, 2013 12:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ora-12899: value too large for column
Replies: 7
Views: 2875

My question is, does Datastage by default assume all varchars as varchar(40)? No. Usually, with NLS enabled, Oracle VARCHAR2(9) CHARS would be VARCHAR(27) BYTES or, perhaps VARCHAR2(36) BYTES, and that would be what DataStage imports, so I can't really guess where the 40 is coming from. Did you act...