Search found 53125 matches

by ray.wurlod
Mon Nov 01, 2010 1:52 am
Forum: General
Topic: email notification
Replies: 29
Views: 6471

Hashed files aren't "files" in the traditional sense. Commands like cat or type simply don't work with hashed files.
by ray.wurlod
Mon Nov 01, 2010 1:50 am
Forum: Information Analyzer (formerly ProfileStage)
Topic: Coding modulus (%)
Replies: 5
Views: 2532

There is no modulus operator in Information Analyzer rule definition expressions - you need to use the Mod() function as indicated.
by ray.wurlod
Sun Oct 31, 2010 9:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fix Pack 1 installation Failed
Replies: 3
Views: 1752

The usual security problem with MetadataServer.sh is usually the file ../MetadataServer.info which is heavily protected (-rw-------). You may need to check who is the owner of this file.
by ray.wurlod
Fri Oct 29, 2010 10:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ColumnImport stage error unidentified error
Replies: 1
Views: 1036

You have nowhere to import them from. Prefer a Column Generator stage.
by ray.wurlod
Fri Oct 29, 2010 5:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: peoplesoft
Replies: 3
Views: 1508

You can buy DataStage jobs from Peoplesoft to work with their data structures. So... delivered?
by ray.wurlod
Fri Oct 29, 2010 5:40 pm
Forum: General
Topic: Can i switch to OBIEE or stick with DataStage
Replies: 6
Views: 3122

:idea:
Stick with OBIWAN. Use the force!
:lol:
by ray.wurlod
Fri Oct 29, 2010 5:40 pm
Forum: General
Topic: understanding Hash partition
Replies: 3
Views: 2100

This is a simplistic explanation but, I trust, a comprehensible one. The Hash algorithm adds together the values of all the characters in the key then divides by the number of nodes. The remainder (integer division) is the node number to which the record is directed. The unstated complexity is a &qu...
by ray.wurlod
Fri Oct 29, 2010 11:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to implement Reject logic
Replies: 13
Views: 6308

Try being more explicit with data types. VarChar is very forgiving. Change TR1 to integer and expirydate and effective_dt to date (with a format string of "%dd/%mm/%yy").
by ray.wurlod
Fri Oct 29, 2010 11:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Send a warning to log when lookup fails
Replies: 8
Views: 1841

In a sequence detect that the job has finished with warning (specifically about usage of reject link) and generate email using Notification Activity. You can also code this yourself in an after-job subroutine.
by ray.wurlod
Fri Oct 29, 2010 11:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: User tracking in dsimport
Replies: 3
Views: 1471

Even Informatica could not detect identity theft of this kind. You should be able to narrow it down fairly easily - who knows your password? Or who has/had access to your computer when you left it logged in?

(There's a certain pattern here.)
by ray.wurlod
Fri Oct 29, 2010 11:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: OSH file Information
Replies: 2
Views: 1499

The osh script generated by a parallel job being compiled is in a directory called RT_SCnnn. Here, nnn is the job number, which is mapped to the job name via the DS_JOBS table. SELECT NAME FROM DS_JOBS WHERE JOBNO = 'nnn'; Note that JOBNO is a VarChar, so single quotes are needed. The osh script gen...
by ray.wurlod
Fri Oct 29, 2010 11:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to remove "shift in/out characters"
Replies: 2
Views: 1268

Shift-In and Shift-Out are sometimes used to indicate a change of mapping (particularly in Japanese character sets). Beware that these might be important characters before arbitrarily discarding them. Once they're inside a job, they should be able to be discarded with a simple Convert() function.
by ray.wurlod
Fri Oct 29, 2010 11:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: HOW to increase the performance of a QS job
Replies: 1
Views: 1215

Are you using DB2 Load (or direct write from an Enterprise or Connector stage)?

As a test can you write the results of the QS job into a Copy stage, to determine whether the slowness is in QS or DB2?
by ray.wurlod
Fri Oct 29, 2010 11:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: peoplesoft
Replies: 3
Views: 1508

Do you have the canned DataStage jobs supplied by PeopleSoft? If so, use those - they are purpose written.
by ray.wurlod
Fri Oct 29, 2010 11:33 am
Forum: General
Topic: Backup DataStage Projects
Replies: 6
Views: 7468

DSParams and all other configuration files are picked up in a file system backup of the server and can be restored from that if your failure is bad enough to have lost file system objects. There is no need to be able to restore finer granularity than "file", unlike with DataStage projects....