Search found 15603 matches

by ArndW
Fri Oct 15, 2010 2:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job getting aborted Unable to start ORCHESTRATE network conn
Replies: 3
Views: 1374

Putting in those parameters shouldn't affect the startup process. Does the job fail again if you remove the two parameters?
by ArndW
Fri Oct 15, 2010 2:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: parellel job is not visibile
Replies: 5
Views: 1609

The first question is whether your license.xml includes PX or just server jobs. From the UNIX command line in your $DSHOME directory execute "bin/dslictool" to see what licenses are actually installed.
by ArndW
Fri Oct 15, 2010 2:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: is it a good practise to define a col without defining lengt
Replies: 3
Views: 2063

DataStage PX often uses the VarChar length definition as if it were fixed length and thus uses more storage on sparsely filled strings than if the Varchar fields were non-terminated. You can test this by writing a dummy job with a Row Generator stage creating one column of VarChar(1024) and filling ...
by ArndW
Thu Oct 14, 2010 10:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datstage 7.5 to Datastage 8.1 datatype conversion issue
Replies: 4
Views: 2187

What I am saying is that I don't think that there is an ENV setting to change this behaviour.
by ArndW
Thu Oct 14, 2010 10:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: sequential file - import error
Replies: 3
Views: 1601

Nulls don't get written to or read from sequential files, so one needs to put in null handling or default. But "BESTAND" (this is probably a SAP system since the variable name is German) is most likely numeric so your default would need to be a numeric value, not a space.
by ArndW
Thu Oct 14, 2010 10:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Pivot, Partitioning warnings
Replies: 3
Views: 1686

I don't know about the first, but for the second problem go to the stage before the lookup and then specify "clear" for partitioning the output.
by ArndW
Thu Oct 14, 2010 6:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Uninstall Datastage Client
Replies: 1
Views: 1313

This would be a standard windows uninstall, so perhaps this link might help you further:

http://www.tech-recipes.com/rx/2947/win ... mand_line/
by ArndW
Thu Oct 14, 2010 1:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datstage 7.5 to Datastage 8.1 datatype conversion issue
Replies: 4
Views: 2187

I took a quick look and didn't find any APT_ variables, but that doesn't mean that there isn't one. But your problem does illustrate that use implicit type conversions can be problematic. In this case I would declare the variable as numeric and then perform an explicit DataStage number-to-string con...
by ArndW
Thu Oct 14, 2010 1:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential file unable to read properly
Replies: 7
Views: 2062

Are you using "Affis" in a stage variable? Turn off operator combination (set $APT_DISABLE_COMBINATION to "true" for the run) and ensure that the error is being generated in your transform stage.
by ArndW
Thu Oct 14, 2010 1:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: iteration checking in datastage
Replies: 4
Views: 3068

The simplest solution would be to create another table based on Table 2 that contains just the group and the top-level parent (perhaps in another job) and use just a single lookup without iterations.
by ArndW
Thu Oct 14, 2010 12:50 am
Forum: General
Topic: Options for notification of Job Failures
Replies: 4
Views: 1750

Job Sequences can call up external programs when a job fails. Thus, any method that can be called from the command line can be used to inform of job failure.
by ArndW
Thu Oct 14, 2010 12:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: iteration checking in datastage
Replies: 4
Views: 3068

You have posted in Server but marked the job as Parallel. How this question is approached is very dependent upon which type of job you have. Server jobs can use the concept of multivalued fields which are perfect for this type of problem, but Parallel jobs would need to handle it differently. Also, ...
by ArndW
Wed Oct 13, 2010 9:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date check
Replies: 9
Views: 2843

'12', per your logic.
by ArndW
Wed Oct 13, 2010 8:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date check
Replies: 9
Views: 2843

The stage vars should be [1,8] and [10,8] respectively, I miscalculated.
by ArndW
Wed Oct 13, 2010 8:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DSJOB command to get runtim information each link in a job
Replies: 9
Views: 3079

You cannot. Without external calls or without writing your own c++ buildop you don't have access to this data from within a PX job.