Search found 53125 matches

by ray.wurlod
Wed Feb 20, 2013 2:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Primary Key Query
Replies: 5
Views: 1225

If your Upsert specifies "Insert before Update" the insert will always work because there is nothing preventing it. And you get duplicate keys. Try changing the order to "Update before Insert".
by ray.wurlod
Wed Feb 20, 2013 2:45 pm
Forum: General
Topic: how to encrypt a note by notification activity
Replies: 6
Views: 1406

I doubt that this is possible using Notification Activity. However you could use other activities (Execute Command or Routine) to encrypt the email body and then invoke sendmail() to send it.
by ray.wurlod
Wed Feb 20, 2013 2:44 pm
Forum: General
Topic: Multi Instance Job - DsJobInvocationId
Replies: 4
Views: 1719

In the past I've always doubled up - the Invocation ID governs the instance name, and I also pass the same value as an explicit job parameter. This approach works.
by ray.wurlod
Tue Feb 19, 2013 11:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Trying to Connect to Universe database - FAILED
Replies: 11
Views: 4406

Make sure that this entry appears in the project's uvodbc.config file.

Code: Select all

<localuv>
DBMSTYPE = UNIVERSE
In your UniVerse stage, specify localuv as the DSN.
by ray.wurlod
Tue Feb 19, 2013 4:22 pm
Forum: General
Topic: removed
Replies: 10
Views: 4847

That will be interesting to see. AES-128 encryption should be impossible to break in a reasonable amount of time using the kind of hardware that most Information Server sites use.
by ray.wurlod
Tue Feb 19, 2013 4:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Inconsistent run time for a simple job in Production
Replies: 1
Views: 1079

Short answer - a different total machine load on Friday.
by ray.wurlod
Tue Feb 19, 2013 4:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Detecting the number of processes from job scores
Replies: 23
Views: 8780

My guess is that the practice questions you faced were from the 8.0 test but you have passed the 8.5 or 8.7 test.
by ray.wurlod
Tue Feb 19, 2013 4:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Trying to Connect to Universe database - FAILED
Replies: 11
Views: 4406

How are you describing the "UniVerse" database in .odbc.ini and uvodbc.config ?
by ray.wurlod
Tue Feb 19, 2013 4:12 pm
Forum: General
Topic: Sequence Restartability in case of Routines
Replies: 6
Views: 2203

:idea:
If Craig's suggestion doesn't work, try an explicit Failure trigger.
by ray.wurlod
Tue Feb 19, 2013 4:10 pm
Forum: General
Topic: How to validate a column having website url value
Replies: 3
Views: 1744

Welcome aboard.

If you are using version 8.7 or later and if you have Information Analyzer licensed then you can use the Data Rules stage to perform a matches_regex test on the URL. This is by far the easiest way to check URLs, as there are so many valid variants.
by ray.wurlod
Tue Feb 19, 2013 4:08 pm
Forum: General
Topic: removed
Replies: 10
Views: 4847

In fact it almost certainly breaches the licence conditions of the author's Information Server installation (the part about reverse engineering).

I make that statement with no knowledge whatsoever of the tool.
by ray.wurlod
Tue Feb 19, 2013 1:31 am
Forum: General
Topic: removed
Replies: 10
Views: 4847

Presumably this utility does not work with passwords encrypted strongly using the encrypt.sh (encrypt.bat) utility?
by ray.wurlod
Mon Feb 18, 2013 10:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential file read error
Replies: 3
Views: 1181

Looks like it may be ignoring the Field Delimiter property. It shouldn't be.
Why not try defining the format as variable length (all strings are VarChar) and using a Transformer or Filter stage to trap the rejects? This has the advantage that the filtering is done in parallel.
by ray.wurlod
Mon Feb 18, 2013 3:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: unable to create Java Virtual Machine
Replies: 4
Views: 2297

"Suddenly", eh? What changed?
by ray.wurlod
Mon Feb 18, 2013 3:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Changing from Single node to Multi node Configuration
Replies: 15
Views: 11532

The whole point of parallel jobs is that you do NOT need to redesign when running on a different number of nodes.