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?
Search found 53125 matches
- Tue Feb 12, 2013 3:16 pm
- Forum: General
- Topic: datastage8.7 installation without c++ compiler
- Replies: 7
- Views: 3171
- Tue Feb 12, 2013 3:10 pm
- Forum: General
- Topic: Identifing the decode value of password parameter
- Replies: 4
- Views: 1420
- Tue Feb 12, 2013 3:08 pm
- Forum: IBM QualityStage
- Topic: Error while running a quality stage job
- Replies: 3
- Views: 3356
- 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
- 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...
- 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
- 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 - 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...
- 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
- 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
- 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...
- 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
- Mon Feb 11, 2013 1:56 am
- Forum: General
- Topic: Charecter "[" is single byte or multibyte chare
- Replies: 1
- Views: 964
- 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
- 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...