Search found 53125 matches

by ray.wurlod
Tue Jul 03, 2012 4:19 pm
Forum: Information Analyzer (formerly ProfileStage)
Topic: way to filter out empty tables
Replies: 1
Views: 1447

Can't think of one. On the other hand, profiling empty table doesn't take very long!
by ray.wurlod
Tue Jul 03, 2012 3:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can This Be Possible With Out SCD?
Replies: 3
Views: 1175

Set the Lookup Failed rule to Continue. In the Transformer stage detect success or failure of the lookup with an IsNull() function. If the lookup fails, your new record goes to an Insert link. If the lookup succeeds, your new record goes to an Insert link and the columns returned from the Lookup go ...
by ray.wurlod
Tue Jul 03, 2012 3:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: compare 2 strings
Replies: 4
Views: 1292

In this case I proposed removal only within the scope of the comparison.

Code: Select all

Convert("#$%^&","",InLink1.String1) = Convert("#$%^&", "", InLink2.String2)
by ray.wurlod
Tue Jul 03, 2012 3:35 am
Forum: General
Topic: No Changes to the Job
Replies: 6
Views: 1432

Probably easier to execute the command from the Administrator client Command window, but from the DataStage shell on the server in the project would also work. But it's not "the UniVerse database". Hasn't been for years.
by ray.wurlod
Mon Jul 02, 2012 11:31 pm
Forum: General
Topic: No Changes to the Job
Replies: 6
Views: 1432

You can tweak the READONLY field in DS_JOBS.

Code: Select all

UPDATE DS_JOBS SET READONLY = 'RO' WHERE NAME = '<<Job name>>';
When you want the job to be editable again, set this to 'NRO' (not read only).
by ray.wurlod
Mon Jul 02, 2012 11:28 pm
Forum: Cognos (IBM BI)
Topic: Anyone know how to harvest/export Cognos tool tip defs?
Replies: 8
Views: 12498

Indeed it can fail even on a medium sized Cognos model.

One way we have had to implement is to replace the 32-bit JVM that installs with the product with a 64-bit JVM provided by IBM support. No more java.lang.OutOfMemory errors (thus far)!
by ray.wurlod
Mon Jul 02, 2012 11:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: compare 2 strings
Replies: 4
Views: 1292

Convert all the unwanted characters to "" prior to performing the comparison. A single Convert() function on each input shall suffice.
by ray.wurlod
Mon Jul 02, 2012 11:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can This Be Possible With Out SCD?
Replies: 3
Views: 1175

Yes, basically using Lookup and Transformer stages. The logic is contained within the Transformer stage.
by ray.wurlod
Mon Jul 02, 2012 11:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Input File for dataset not found
Replies: 6
Views: 3206

Still waiting for pragb to post the exact error message...
by ray.wurlod
Mon Jul 02, 2012 11:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date Format
Replies: 3
Views: 2354

There's no such thing as a default format for Oracle. You set your own date picture (or the DBA may have done it for you). Let's assume it's YYYY-MM-DD, which is also the ISO 8601 standard. You now have two problems - how to correctly add the century to your two digit years, and how to reorder the c...
by ray.wurlod
Mon Jul 02, 2012 4:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Could not locate operator definition, wrapper
Replies: 12
Views: 4928

The SQL Server Enterprise stage may have been exported from the Windows system and imported into the UNIX system. However it will not work there.
by ray.wurlod
Mon Jul 02, 2012 4:46 pm
Forum: Cognos (IBM BI)
Topic: Anyone know how to harvest/export Cognos tool tip defs?
Replies: 8
Views: 12498

After you've imported the Cognos BI report definitions, does perhaps the bi2bg utility pick up terms defined in tooltips?
by ray.wurlod
Mon Jul 02, 2012 4:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parameterizing where clause in db2 connector
Replies: 5
Views: 4421

This has been posted a number of times, with the consensus seeming to be that you can't make a list a parameter. However, you can make the entire SQL statement (with its list) a parameter.
by ray.wurlod
Fri Jun 29, 2012 11:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Issue deleting account-based hashed file
Replies: 3
Views: 1823

If you deleted the VOC file you have completely invalidated your project. It will be almost impossible to get it working again. The project must have a VOC, and it is specific to that project. Hashed files have two parts, name and D_name. (There may be more if the hashed file is indexed.) Account-ba...
by ray.wurlod
Fri Jun 29, 2012 5:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: warning
Replies: 6
Views: 5358

That data wouldn't generate those errors unless the metadata incorrectly specifies the field widths. Can you please post the record schema associated with those data?