Search found 153 matches

by battaliou
Sun Nov 24, 2019 9:23 am
Forum: General
Topic: Querying the log of a multi-instance job
Replies: 6
Views: 8693

Easy way to do it is to create a SERVER job with a HASHED file stage feeding an output link. Set the filename to RT_LOGnn and then go VIEW-DATA. You may have to setup a few column names, one being defined as a key.
by battaliou
Tue Jul 25, 2017 3:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Checksum error
Replies: 9
Views: 8640

We had a similar issue involving a lookup. Solution was to use a transformer with function NullToZero() on the lookup column.
by battaliou
Tue Mar 07, 2017 9:58 am
Forum: General
Topic: IIS-DS-RESTAPI-00019 Error consola del Datastage
Replies: 5
Views: 18020

The first line of your message is of concern. ( Which: no DSAppWatcher.sh in (/usr/lib64 ... ) Which path are you running this from? I'm getting the following from ibm/infosphere/InformationServer/Server/DSODB ./bin/DSAppWatcher.sh -test DSODB is turned ON in the DSODBConfig.cfg file. Link Monitorin...
by battaliou
Wed Sep 21, 2016 6:51 am
Forum: Site/Forum
Topic: Newsletter sign-up form will not work!
Replies: 9
Views: 23208

Tells me I've been previously registered, and drops me out. :?
by battaliou
Wed Sep 21, 2016 5:54 am
Forum: General
Topic: dscmdexport using command activity diff dsx size
Replies: 7
Views: 3952

Are you using /EXEC option? Check out http://www.ibm.com/support/knowledgecen ... mmand.html
by battaliou
Wed May 11, 2016 9:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue with Timezone in flat files
Replies: 6
Views: 4421

Generic and RCP? That's novel. I guess you are able to affect your oracle select statement? If so, you could always convert your Timestamp upfront using the to_char function. e.g. select to_char(TIMESTAMP '1999-01-15 8:00:00 -8:00') as TZ from dual‏;
by battaliou
Tue Feb 16, 2016 8:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: remove leading zeros in decimal field in sequential file
Replies: 26
Views: 78159

I know this is an old post, but our solution is to change the input datatype from a decimal to a varchar
by battaliou
Wed Feb 03, 2016 8:47 am
Forum: General
Topic: dsjobreport argument
Replies: 4
Views: 3987

Syntax at UNIX reads:
DSJobReport 1;/tmp;

Also runs with:
DSJobReport 1;/tmp/;

This is opposed to IBM's suggestion at http://www-01.ibm.com/support/docview.w ... wg21627331
by battaliou
Wed Jun 24, 2015 2:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Understanding Row Numbering algorithm
Replies: 6
Views: 4816

Could it be that you are running on one node, or the transformer is set to run sequentially?
by battaliou
Fri Nov 21, 2014 5:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: TIME field format change In schema file
Replies: 6
Views: 4929

Re: TIME field format change In schema file

Quick question: Are you keeping the type as decimal in your job?
by battaliou
Fri Nov 14, 2014 7:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: File Split logic
Replies: 8
Views: 6290

This is a classic server job using a type 1 hashed file. It will generate any amount of files you like.
by battaliou
Fri Nov 14, 2014 6:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Performance
Replies: 8
Views: 10355

Try sorting in the ODBC stage.
by battaliou
Fri Nov 07, 2014 8:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Help me on this Scenario
Replies: 4
Views: 4153

You could build up the output string in a stage variable and release it with a constraint. e.g.

stagevar1 : if in.COL1 = 'A' then in.COL2 else stagevar1 : ',' : in.COL2

Set single varchar output column to stagevar1 and constrain in.COL1 = 'D'

Run in sequential mode.
by battaliou
Tue Oct 21, 2014 8:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Writing the WVARCHAR column into a VARCHAR database column
Replies: 9
Views: 24495

We had a similar problem recently using ODBC connector against i-series non-journalised tables. The fix here was to set ODBC setting 'Isolation level' to Default.
by battaliou
Wed Jul 09, 2014 6:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Not able to Load the data into table
Replies: 3
Views: 3580

There should be a "like" button for snappy replies like Craig's above.