Search found 53125 matches

by ray.wurlod
Fri Sep 14, 2012 3:53 pm
Forum: General
Topic: DataStage project creation error
Replies: 23
Views: 7285

Users are not added in WAS. The only reason for opening global security was to tell you where the user registry is: operating system, LDAP or (custom) internal user registry in Information Server. Once you have that knowledge you can add users. Then, using the web console for Information Server, you...
by ray.wurlod
Fri Sep 14, 2012 3:51 pm
Forum: General
Topic: DataStage Compilation for Sequences
Replies: 3
Views: 1463

Use Advanced Find to perform a deep dependencies search then select the result and effect a Multi Job compile from the right-click menu.
by ray.wurlod
Thu Sep 13, 2012 12:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Synchronized Commit to MQ of same messages
Replies: 4
Views: 1347

Would this be the Distributed Transaction stage?
by ray.wurlod
Thu Sep 13, 2012 5:35 am
Forum: General
Topic: ETL vs ELT
Replies: 3
Views: 1576

What does 'strong' mean in this context?

DataStage can do either and, indeed, can make the decision about which one to use using cost-based optimization.
by ray.wurlod
Thu Sep 13, 2012 5:34 am
Forum: General
Topic: ETL Rule based engine
Replies: 3
Views: 1430

DataStage now (8.7) has a Data Rules stage, so I guess you can say that it's now strong in Rules.

Whatever that may mean.
by ray.wurlod
Wed Sep 12, 2012 12:53 am
Forum: General
Topic: clean the abandoned locks in Datastage 8.5
Replies: 4
Views: 5328

Do you have the job open in Designer as well as in Director? A minimized Designer, perhaps? One with a modal dialog box that doesn't have focus?
by ray.wurlod
Tue Sep 11, 2012 3:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error Profiling in Japanese Character
Replies: 2
Views: 1117

The short answer is that you must find out how the characters are encoded in the mainframe-sourced file.
by ray.wurlod
Mon Sep 10, 2012 4:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Range Lookup
Replies: 5
Views: 1777

The main thing you will need to fix is the ability to return more than one row from the lookup. This is a simple check box. That having been fixed you could use a Transformer stage loop. A range lookup using a Lookup stage requires both the low end and the top end of the range to be specified. Your ...
by ray.wurlod
Mon Sep 10, 2012 4:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error unmarshling returnheader:java.io.EOFException
Replies: 5
Views: 3320

Try stopping and re-starting the agents.
by ray.wurlod
Mon Sep 10, 2012 4:39 pm
Forum: General
Topic: Designer: 'Compiled succesfully', Director 'Not Compiled'
Replies: 3
Views: 1377

Have you disabled auto-refresh in Director client? If so, refresh manually and see whether the job status values are updated.
by ray.wurlod
Mon Sep 10, 2012 4:35 pm
Forum: IBM QualityStage
Topic: Unhandled Text from MNS Stage
Replies: 3
Views: 2565

As noted you cannot do this in the out-of-the-box rule set - you would need to make a copy of that rule set then edit the Pattern Action Language script file.
by ray.wurlod
Mon Sep 10, 2012 12:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: need assistance with to_char(<Date_column>, 'HH24') fo
Replies: 4
Views: 1878

Do your own detective work. Create a small test job that only performs the inner, TimestampFromString(), function. Does that work properly? (You could check with an IsValid() function, for example. If that's OK, then check the names of the outer, HourFromTime() function. If you have that right, then...
by ray.wurlod
Mon Sep 10, 2012 12:12 am
Forum: General
Topic: routine for getting message type,message detail from job log
Replies: 6
Views: 1981

Choose "Server Routine" from the New menu.
Add DataStage BASIC code.
Save.
Compile (within the Routine dialog).
by ray.wurlod
Sun Sep 09, 2012 3:54 pm
Forum:
Topic: Enable Operational metadata
Replies: 10
Views: 4131

Experiment to find out whether operational metadata (OMD) capture cascades from the controlling sequence. If not, submit an enhancement request. A check box for enabling/disabling OMD capture in individual Job activities might also be useful; one that overrides the setting from the controller.
by ray.wurlod
Sun Sep 09, 2012 1:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: need assistance with to_char(<Date_column>, 'HH24') fo
Replies: 4
Views: 1878

You need first to extract the time from the timestamp using a function such as TimeFromTimestamp(). You can apply HourFromTime() to that result.

Code: Select all

HourFromTime(TimeFromTimestamp(InLink.TheString))