Search found 15603 matches

by ArndW
Tue Jul 07, 2009 2:36 am
Forum: General
Topic: Weird behaviour of Parallel job! HELP!!
Replies: 7
Views: 2145

Re: Wierd behaviour of Parallel job! HELP!!

ravikishore wrote:...Also, I copied the production job to the same folder and ran the job once again...
Does this mean that a copy of the same job ran correctly? What happens if you "force compile" the original, does it then start working correctly?
by ArndW
Tue Jul 07, 2009 1:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Find job option in Director
Replies: 5
Views: 2165

Just enter the known substring part, i.e. if you look for "Hello" it will find the job "HelloWorld".
by ArndW
Tue Jul 07, 2009 12:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Update Environemt Variables
Replies: 17
Views: 5266

Please start with a trivial program first and get that running in a test job. This will make your debugging much simpler. Your error might point to a simple entrypoint name problem due to incorrect linking in the object. As I recommended earlier: - declare it as an object - declare it with 3 argumen...
by ArndW
Mon Jul 06, 2009 2:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: $PASSWD showing up in job log as my reAl password
Replies: 4
Views: 1055

Somebody doing a PORT.STATUS at the "correct" moment would still see the cleartext.
by ArndW
Mon Jul 06, 2009 2:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: $PASSWD showing up in job log as my reAl password
Replies: 4
Views: 1055

Unfortunately you cannot avoid it when using the method your are using. I suppose you could set and environment variable elsewhere and thenjust use that environmetn variable in your command but, as you rightly observed, security with external calls such as this is rather lax.
by ArndW
Mon Jul 06, 2009 12:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ASCII to EBCDIC conversion
Replies: 4
Views: 1441

There is a BASIC function for both ASCII and EBCDIC.
by ArndW
Mon Jul 06, 2009 12:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Varchar size issue when migrating Db from ISO8859-1 to UTF8
Replies: 6
Views: 5742

My first guess would be that the change applies only to new tables, and that existing tables are still byte based and thus causing your truncation warnings.
by ArndW
Mon Jul 06, 2009 6:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: To do job Abort in server
Replies: 3
Views: 1280

Put a link into your transform stage with a constraint of "SQLOutputLink.REJECTED" (Assuming your link to your DB connection is called "SQLOutputLink")and then put limit of that output to abort after 1 row.
by ArndW
Mon Jul 06, 2009 2:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Strange DataStage problem
Replies: 15
Views: 7921

What do the suggestions by Ray regaring LIST.READU show?
by ArndW
Mon Jul 06, 2009 1:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: APT_DECIMAL
Replies: 6
Views: 3983

www.worldcalc tells me it is has the correct 5-7-5 syllable count. It doesn't say anything about its artist content though :wink:
by ArndW
Sun Jul 05, 2009 10:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Exception raised in GCI subroutine
Replies: 2
Views: 1590

Try resetting the job and looking at or posting the "from previous run..." entry in the log file.
by ArndW
Sun Jul 05, 2009 1:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Update Environemt Variables
Replies: 17
Views: 5266

I'm not sure what your problem is. Do you still get a runtime error?
by ArndW
Fri Jul 03, 2009 2:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: APT_DECIMAL
Replies: 6
Views: 3983

Craig,

As the great freelance consultant Matsuo Basho once commented,

A Parallel Job
Running and finishing quickly
no longer is green
by ArndW
Fri Jul 03, 2009 7:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Call java code in datastage
Replies: 4
Views: 1288

1. Write a c program. Here's one I use: #include <stdlib.h> #include <stdio.h> char * AwHelloWorld(char * InString) { char* OutStr; OutStr="Hello World!"; return OutStr; } 2. Compile the code, on AIX I use "/usr/vacpp/bin/xlC_r -O -c HelloWorld.cpp" 3. Link the code, on AIX I use...
by ArndW
Fri Jul 03, 2009 7:36 am
Forum: General
Topic: running the java code in datastage7.5
Replies: 3
Views: 1021

Please only post the same question one time!