Search found 53125 matches

by ray.wurlod
Wed Apr 30, 2014 1:28 am
Forum: General
Topic: Multiple parameterized instances in parallel
Replies: 5
Views: 1842

The actual_Sequence will only be executed once. You need to process the BU within the loop, passing the BU value via activity variable StartLoop_BU_Processing.$Counter
by ray.wurlod
Wed Apr 30, 2014 1:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Column order changes after restarting DS Services
Replies: 7
Views: 3821

Does the order actually matter?
by ray.wurlod
Tue Apr 29, 2014 10:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Parse data
Replies: 13
Views: 5985

There is no looping capability in the Transformer stage in server jobs. Further, you can't assume that times will always begin with 23:05. You must learn to create general solutions. For example, the number of time/string pairs in the string is one quarter of the number of colon-delimited fields ass...
by ray.wurlod
Tue Apr 29, 2014 6:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Does Before-SQL works only for DML ?
Replies: 11
Views: 3629

You can create the table via the Table Action property in the Connector stage.
by ray.wurlod
Tue Apr 29, 2014 6:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 Connector Internals
Replies: 6
Views: 3030

You will get some idea by downloading some of the other Connector stage types from developerWorks - some of them even include source code.

From memory, the DB2 API is very similar to the ODBC API.
by ray.wurlod
Tue Apr 29, 2014 4:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Parse data
Replies: 13
Views: 5985

It's probably easiest - assuming an arbitrary number of time/string pairs and arbitrary string lengths - to pre-parse this string into a text file in a before-stage subroutine (making use of MatchField() function), then have your job read from that file.
by ray.wurlod
Tue Apr 29, 2014 2:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: After APT_STRING_PADCHAR change...
Replies: 1
Views: 1158

You do not need to re-compile. Environment variables are read when the job starts. An entry is placed into the job log to report their values.
by ray.wurlod
Mon Apr 28, 2014 6:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC Oracle Wire Protocol driver Oracle Connection Dead
Replies: 9
Views: 4849

Check that the ODBC driver being used to connect to 11g is valid, and validly referred to in tnsnames.ora file.
by ray.wurlod
Mon Apr 28, 2014 6:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Refresh Environments - Issue related to hashed files
Replies: 10
Views: 4684

Are you missing running the job that populates the hashed file from the target table?
by ray.wurlod
Fri Apr 25, 2014 4:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: adding zero into input field's data
Replies: 6
Views: 1443

Re: Reply

ssnegi wrote:Since you want 0 before the input value :

str('0',4-len(DSLink.COL)):DSLink.COL
... which is exactly the expression that the original poster used.
by ray.wurlod
Fri Apr 25, 2014 4:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to: Timestamp to Date string OCONV
Replies: 1
Views: 3457

Try changing the Data Element for this column to Date.
by ray.wurlod
Thu Apr 24, 2014 5:01 pm
Forum: General
Topic: RT_LOG Maintenance
Replies: 8
Views: 1943

The values in //PURGE.SETTINGS might be the same as default, which are stored in DSParams file in the project. It would be easy to check.
by ray.wurlod
Thu Apr 24, 2014 4:59 pm
Forum: General
Topic: Cleaned up $DSHOME/errlog, but still have questions!
Replies: 14
Views: 6134

... or UniVerse manuals. :wink:
by ray.wurlod
Thu Apr 24, 2014 12:33 pm
Forum: General
Topic: RT_LOG Maintenance
Replies: 8
Views: 1943

Each RT_LOGnnn hashed file that has non-default purge settings will have a record called //PURGE.SETTINGS. You can view this with

Code: Select all

LIST.ITEM RT_LOGnnn '//PURGE.SETTINGS'
or, from the command line

Code: Select all

$DSHOME/bin/UVread RT_LOGnnn //PURGE.SETTINGS
by ray.wurlod
Wed Apr 23, 2014 7:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creating Multiple Format Flat File
Replies: 9
Views: 7230

I have checked (in version 8.7) and verified that, indeed, it is NOT possible to use a Complex Flat File stage as a target in a server job.