Search found 15603 matches

by ArndW
Wed Sep 09, 2009 12:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: The server is not responding
Replies: 12
Views: 5385

(for AIX):
1. /opt/IBM/IIS/WebSphere/AppServer/bin/startServer.sh server1 -username wasadmin -password MySecretPassword

2. /opt/IBM/IIS/InformationServer/ASBNode/bin/NodeAgents.sh start
by ArndW
Wed Sep 09, 2009 12:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: abort job based on condition
Replies: 6
Views: 1455

Do you have a link marked as "Reject" in the transform stage?
by ArndW
Wed Sep 09, 2009 11:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: EBCDIC to ASCII conversion for '|' character
Replies: 12
Views: 16309

Do you have the hex value of both the EBDIC source and final ASCII characters?
by ArndW
Wed Sep 09, 2009 11:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem with StringtoDate function
Replies: 3
Views: 3622

I would think that

Code: Select all

String To Date('9999-01-01','%yyyy-%mm-%dd')
will make DS happier.
by ArndW
Wed Sep 09, 2009 10:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: 2 Joins better than 1
Replies: 4
Views: 1169

Add those environment parameters to your job and set the values to "true" and "true"
by ArndW
Wed Sep 09, 2009 10:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job running for ever
Replies: 10
Views: 7479

If you monitor the progress can you see how the data is going through the sort? Also, replace any WRITE stages to databases with a peek stage temporarily to determine if the slow speed is due to those stages.
by ArndW
Wed Sep 09, 2009 10:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Calling OSH script from UNIX Server
Replies: 22
Views: 13403

source the $DSHOME/dsenv script and the libraries will be set up correctly to execute the orchestrate commands.
by ArndW
Wed Sep 09, 2009 10:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: abort job based on condition
Replies: 6
Views: 1455

As DSGuru2B has recommended, put in a transform stage and put a constraint "In.REJCOUNT <> 0" going out and place a limit of 1 row on that link, that will trigger the job to abort.
by ArndW
Wed Sep 09, 2009 7:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: 2 Joins better than 1
Replies: 4
Views: 1169

add a sort stage before the join to each link where you specify the sort key and add "Don't sort, data previously sorted" so that the join stage does not have to insert a sort operator. You can print out and compare the score with APT_DUMP_SCORE. You could also add APT_NO_SORT_INSERTION so...
by ArndW
Wed Sep 09, 2009 7:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job running for ever
Replies: 10
Views: 7479

Fix "Join_12" first. You need to sort the data on exactly the same column(s) as is/are used in the join. Once that warning is gone, see what happens.
by ArndW
Wed Sep 09, 2009 7:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: generate xml file form MQ Series using datastage
Replies: 1
Views: 1318

No real difference for normal MQ use between the two.
by ArndW
Wed Sep 09, 2009 6:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: [DataDirect][ODBC lib] Function sequence error
Replies: 3
Views: 2270

Is the ODBC driver from Attunity? It might not support concurrent connections.
by ArndW
Wed Sep 09, 2009 6:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to run several dssh scripts in one batch
Replies: 8
Views: 3099

try

Code: Select all

dssh<<eof
pterm case noinvert
SELECT JOBNO FROM DS_JOBS WHERE NAME = 'Test';
QUIT;
eof
Note the switching off of case inversion and the semicolon on the SQL
by ArndW
Wed Sep 09, 2009 5:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Shared Container and Allow Multiple Instance
Replies: 5
Views: 2700

Hello Klaus, long time no see :P
by ArndW
Wed Sep 09, 2009 5:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dsenv is not pointing properly
Replies: 13
Views: 6504

Have you restarted DataStage since making those changes? They won't take effect until you do so.