Search found 53125 matches

by ray.wurlod
Tue Jun 25, 2013 1:57 am
Forum: General
Topic: Datastage repository tables
Replies: 4
Views: 2143

The repository tables for DataStage version 9.1 are, essentially, the same as for versions earlier than 9.1. There are two repositories, in fact. There is the local, project, repository, which is the original design (from version 1.0), and there is the common metadata repository introduced by IBM in...
by ray.wurlod
Tue Jun 25, 2013 1:53 am
Forum: General
Topic: Sequencer
Replies: 2
Views: 1082

That's what the Terminator activity is for. You have a small amount of research ahead of you.
by ray.wurlod
Mon Jun 24, 2013 11:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Data initialization
Replies: 10
Views: 2402

The number of records in a Data Set is given by

Code: Select all

dsrecords myDataSet.ds
If you want just the number use the -n option

Code: Select all

dsrecords -n myDataSet.ds
by ray.wurlod
Mon Jun 24, 2013 11:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: RawLength Vs Len function
Replies: 2
Views: 2961

In DataStage BASIC (and therefore in sequences) you have ByteLen() rather than RawLength(). There is also LenDP() which is the length of a string in terms of the number of character positions needed to display it, catering primarily for double width characters encountered in some Asian character set...
by ray.wurlod
Mon Jun 24, 2013 11:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Query on Vertical Pivot
Replies: 3
Views: 1268

Welcome aboard. In this case it is your expectation that needs to be managed. You have three input rows and three pivoted columns. This is correct behaviour.

What you are trying to achieve can be accomplished using a Transformer stage.
by ray.wurlod
Mon Jun 24, 2013 11:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem in Join stage
Replies: 4
Views: 1127

Somewhat off topic (more a data quality issue), why does IN decode to "Pakistan"?
by ray.wurlod
Mon Jun 24, 2013 11:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Concatenation in transformer ?
Replies: 9
Views: 3571

Concatenate is a string operator.

If applied to a Date data type then an implicit conversion to String is performed.

There is no implicit conversion for going the other way (string to date) so you have to specify an explicit data type conversion function such as StringToDate().
by ray.wurlod
Mon Jun 24, 2013 10:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ICONV Date / Time format mask
Replies: 9
Views: 8185

You have to split the date from the time and convert them separately. DataStage BASIC has no knowledge of timestamps in any form. And, in particular, there is no internal format of a timestamp in DataStage BASIC. Curiously, perhaps, the supplied SDK Transforms and Routines do provide such a thing, t...
by ray.wurlod
Mon Jun 24, 2013 10:52 pm
Forum: General
Topic: Sequence job
Replies: 7
Views: 1710

chulett wrote:You can't with DataStage out of the box, true. A script is not the only solution however, a custom routine could be written to do this.
Search DSXchange for DSSendMail to learn how to do it.
by ray.wurlod
Mon Jun 24, 2013 10:47 pm
Forum: General
Topic: WARNING: Logon attempts are audited
Replies: 12
Views: 2463

Pretty sure this is coming from somewhere on your UNIX system, perhaps from some add-on security module. Do you get the same message when logging in via a telnet session?
by ray.wurlod
Mon Jun 24, 2013 10:44 pm
Forum: General
Topic: Subversion in DataStage
Replies: 8
Views: 4544

Here's how to get SubVersion up and running with Information Server Manager. This was done on a version 8.5 site, but should still be current. A newer version of SubVersion's Eclipse plug-in probably exists by now. Open Information Server Manager. From the Help menu choose Software Updates ; from it...
by ray.wurlod
Fri Jun 21, 2013 3:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: use of peak stage
Replies: 3
Views: 2040

I would use Transformer stage for this requirement, either using LastRecordInGroup(col1) as a constraint expression or following the Transformer with a Remove Duplicates stage set to "Last" and grouping on col1.
Within the Transformer populate the column if the incoming value is non-empty.
by ray.wurlod
Fri Jun 21, 2013 3:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: loading oracle table issue
Replies: 3
Views: 1309

Assuming you're using a Connector stage, there are check boxes on the reject tab (when you have the reject link selected in the stage editor) to specify what you wish to appear on the rejects link. By default nothing is selected.
by ray.wurlod
Fri Jun 21, 2013 3:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: getting data for the last three months
Replies: 13
Views: 8003

Perfectly. These routines have been in use since version 3.
by ray.wurlod
Fri Jun 21, 2013 3:36 pm
Forum: General
Topic: WARNING: Logon attempts are audited
Replies: 12
Views: 2463

Which activity in the sequence throws this error? What is the complete error message?