Search found 53125 matches
- Wed Oct 15, 2014 3:27 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Sequential file unable to initialize importer
- Replies: 4
- Views: 2005
First and obvious question - what's different about the dev environment that it works there and not in the other environments? That you have a zero length string (presumably in a VarChar column) is almost certainly the sourced of your problems. Is this supposed to represent NULL? If you go the fixed...
- Wed Oct 15, 2014 3:24 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Datastage 6.0 - arithmetic loss of precision
- Replies: 16
- Views: 5849
- Wed Oct 15, 2014 3:22 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Surrogate Key using a state file or Database
- Replies: 7
- Views: 6765
Re: Surrogate Key using a state file or Database
Why?collabxchange wrote:I need the surrogate key to be generated sequentially
A surrogate key guarantees uniqueness - nothing else. A bigger block size would be my main recommendation.
- Wed Oct 15, 2014 3:17 pm
- Forum: General
- Topic: Value Expression in Job Activity Stage
- Replies: 8
- Views: 1678
- Mon Oct 13, 2014 8:37 pm
- Forum:
- Topic: 11.3 Equivalents
- Replies: 4
- Views: 3273
- Mon Oct 13, 2014 6:42 pm
- Forum: General
- Topic: Job Parameter Value Assignment
- Replies: 9
- Views: 2883
- Mon Oct 13, 2014 4:15 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Special Characters replaced by <SUB>
- Replies: 3
- Views: 1705
- Mon Oct 13, 2014 3:24 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Special Characters replaced by <SUB>
- Replies: 3
- Views: 1705
- Mon Oct 13, 2014 3:22 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: error : Internal Error: (size <= blocksize_): iomgr/ioco
- Replies: 3
- Views: 3021
- Mon Oct 13, 2014 3:21 pm
- Forum: General
- Topic: Job Parameter Value Assignment
- Replies: 9
- Views: 2883
What Craig is trying to say is that the entry in the value file should be of the form
First line is column names should be False.
Code: Select all
ID=1001- Sun Oct 12, 2014 3:10 pm
- Forum: General
- Topic: Password Encryption through ParameterSet
- Replies: 1
- Views: 797
- Fri Oct 10, 2014 2:00 pm
- Forum: General
- Topic: Job Name If There Are Any In Aborted Status
- Replies: 13
- Views: 3656
- Fri Oct 10, 2014 1:45 am
- Forum: General
- Topic: Engine last restart date
- Replies: 6
- Views: 1797
From memory (not in a position to check at the moment), the command may also provide this value.
Code: Select all
uv -admin -info- Fri Oct 10, 2014 1:43 am
- Forum: General
- Topic: New Line character on Windows
- Replies: 17
- Views: 6010
Generate the parameter value in the Job activity using an expression, for example
Code: Select all
UserVars.var1 : "_" : UserVars.var2 : ".txt"- Thu Oct 09, 2014 5:39 pm
- Forum: General
- Topic: New Line character on Windows
- Replies: 17
- Views: 6010
You missed the quoted comma as the second argument of the Field() function.
Code: Select all
Field(Convert(@FM, ",", ExecCommand.$Output), ",", 1, Count(ExecCommand.$Output,@FM))
^
|