Search found 1274 matches

by jwiles
Mon Mar 25, 2013 9:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Implicit versus Explicit Conversions
Replies: 13
Views: 7619

The job score doesn't show you what is happening within the transformer performing the conversion, only the input and outputs. So while the scores may be identical, the operation could be considerably different. The outstanding questions are: 1) Is the source data guaranteed to be 100% valid and in ...
by jwiles
Mon Mar 25, 2013 9:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: An ODD Lookup, please help
Replies: 10
Views: 4332

You need to more clearly define what the end results you need are for certain input conditions: 1) You have an input record which has no match for either REF 1 or REF 2. 2) You have an input record which has a match for REF 1 but not on REF 2. 3) You have an input record which has a match for REF 2 ...
by jwiles
Sat Mar 23, 2013 11:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Incremental Loading Without Date fields in source
Replies: 12
Views: 5000

Has the client provided a method for identifying the new rows other than comparing the data row-to-row? Are there any unique keys available?

Regards,
by jwiles
Fri Mar 22, 2013 6:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Wild Card - Get File Name
Replies: 19
Views: 14120

That would be the $APT_IMPORT_PATTERN_USES_FILESET environment variable.

Regards,
by jwiles
Thu Mar 21, 2013 9:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Processing date fields with RCP
Replies: 1
Views: 2118

A custom operator would fit the bill. The Custom Operator Reference document will give you a lot of information. Here is the version for IS 8.7. You can also Google/Bing/whatever for it for other releases.

Regards,
by jwiles
Thu Mar 21, 2013 9:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: surrogate key
Replies: 5
Views: 4208

Remember to mark the topic as resolved!

Regards,
by jwiles
Thu Mar 21, 2013 9:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Generate seq number in transformer only when the key changes
Replies: 14
Views: 12302

Been able to do that as long as I've been doing parallel (7.0)
by jwiles
Thu Mar 21, 2013 9:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Generate seq number in transformer only when the key changes
Replies: 14
Views: 12302

Explain what you mean by "handle first row". What do you think you need to do differently with it? Is your requirement to start with a particular value for the generated key, or just to generate unique values? If the former, you could modify the Initial Value logic in my earlier post: svKe...
by jwiles
Wed Mar 20, 2013 5:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Generate seq number in transformer only when the key changes
Replies: 14
Views: 12302

To avoid any repartition. No need. The engine will only insert a partition in front of a stage which would require it (sorts, joins, merges, lookups and other key-requiring stages), if it feels that it's required. Won't happen with a transformer except in certain situations (such as if it's followi...
by jwiles
Wed Mar 20, 2013 3:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Generate seq number in transformer only when the key changes
Replies: 14
Views: 12302

svKey Initial value: @PARTITIONNUM svKey derivation: if keyChange=1 then svKey+@NUMPARTITIONS else svKey Assuming you have properly partitioned and sorted your data, each combination of Key1 and Key2 values will be given a unique generated key value. Optionally, you could just use the surrogate key ...
by jwiles
Wed Mar 20, 2013 8:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: surrogate key
Replies: 5
Views: 4208

Does your job contain stages running in parallel mode after the transformer? If so, DataStage partitioning the data,most likely with RoundRobin paritioning. If you do nothing to control the order the records are written to the output, the order is at the mercy of when a block of records arrives at t...
by jwiles
Tue Mar 19, 2013 11:53 pm
Forum: General
Topic: Repository migration steps
Replies: 1
Views: 1489

Review the following presentation regarding how to perform that migration. It details the steps you need to take.

Relocating the XMETA repository for Information Server 8.0.1 and 8.1

Regards,
by jwiles
Mon Mar 18, 2013 12:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage Looping Aggregation
Replies: 3
Views: 3289

What's the purpose of the join stage? What will it provide? Based upon your examples, I think a simple key-change-based calculation using stage variables within a transformer is all that's necessary: Input--->Sort--->Transformer--->Output Sort: Partition on Account, Sort on account/Installment#, gen...
by jwiles
Sun Mar 17, 2013 11:55 pm
Forum: General
Topic: How to Read zip file ?
Replies: 9
Views: 4444

Have you examined the unzipped data from the larger (>4GB) files to verify that the data is in the expected format?

Perhaps the larger files contain multiple smaller files which are also zipped?

Regards,
by jwiles
Wed Mar 13, 2013 10:59 am
Forum: General
Topic: Want to make changes at the parameterset through the unix
Replies: 12
Views: 5268

The method Ray mentioned (updating value files) is the proper and best way to accomplish this task when using parameter sets to pass your parameter values. You can certainly use whatever method you desire to create or modify a value file dynamically (shell script/awk/sed/perl/etc.), then pass that v...