Search found 53125 matches

by ray.wurlod
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...
by ray.wurlod
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

What happens if your expression is ( A / 30.0 ) * B ?
by ray.wurlod
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

collabxchange wrote:I need the surrogate key to be generated sequentially
Why?

A surrogate key guarantees uniqueness - nothing else. A bigger block size would be my main recommendation.
by ray.wurlod
Wed Oct 15, 2014 3:17 pm
Forum: General
Topic: Value Expression in Job Activity Stage
Replies: 8
Views: 1678

What it really should have said was "too many right parentheses".
by ray.wurlod
Mon Oct 13, 2014 8:37 pm
Forum:
Topic: 11.3 Equivalents
Replies: 4
Views: 3273

This is cool. Must keep an eye on your blog page. Or maybe you just change your DSXchange signature when a new blog appears!
by ray.wurlod
Mon Oct 13, 2014 6:42 pm
Forum: General
Topic: Job Parameter Value Assignment
Replies: 9
Views: 2883

Craig only speaks 'murrican.
:lol:
by ray.wurlod
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

Because the file contains accented characters, it cannot be plain ASCII, it must be encoded somehow. Perhaps it is encoded using ISO-8859-1, perhaps using a different encoding. You also need to ascertain what the mapping used in the DB2 table is, for the same reason.
by ray.wurlod
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

How is the file encoded, and what NLS map are you using in the DataStage job? The two need to be compatible, if not identical.
by ray.wurlod
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

Have you changed the memory offsets used by DataStage engine?
by ray.wurlod
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

Code: Select all

ID=1001
First line is column names should be False.
by ray.wurlod
Sun Oct 12, 2014 3:10 pm
Forum: General
Topic: Password Encryption through ParameterSet
Replies: 1
Views: 797

Legally, no.

The DataStage BASIC encryption algorithm can be found if one searches hard enough. However there is no guarantee that the same algorithm will be used in future versions.
by ray.wurlod
Fri Oct 10, 2014 2:00 pm
Forum: General
Topic: Job Name If There Are Any In Aborted Status
Replies: 13
Views: 3656

Use status view in Director, disable display of Categories, and sort by Status.
Aborted will sort to the top of the list.
by ray.wurlod
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

Code: Select all

uv -admin -info
may also provide this value.
by ray.wurlod
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"
by ray.wurlod
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))

                                               ^
                                               |