Search found 53125 matches

by ray.wurlod
Tue Nov 07, 2006 5:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Capturing parameters used to schedule jobs
Replies: 2
Views: 856

In Director select Schedule view, then (Ctrl-P) print the detail of all entries. You will then have a document containing what's queued with the parameter settings (though encrypted parameters will be encrypted!).
by ray.wurlod
Tue Nov 07, 2006 5:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sort Stage
Replies: 8
Views: 3686

asitagrawal wrote:I cannot read ur reply as it is marked as 'Premium Content'.

For less than $1 per week you can read premium posts and bask in the contentment that you're helping to sustain this site.
by ray.wurlod
Tue Nov 07, 2006 4:59 pm
Forum: General
Topic: Not able to run the executable job in different environment.
Replies: 12
Views: 6447

777 has its own intrinsic dangers. When you get a minute review the groups to which developers belong and get them organized properly so that you can revert the permissions to 775.
by ray.wurlod
Tue Nov 07, 2006 7:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Could not load "V52S0_XXXXXXXX"
Replies: 7
Views: 2244

These are internal names used by DataStage to identify objects in job designs. V = "view", the base job canvas is V0, the first container added is V1, the next container V2, and so on. S = "stage", the number is the ordinal number in which added to the job. P = "pin" = one end of a link. The pin num...
by ray.wurlod
Tue Nov 07, 2006 7:43 am
Forum: General
Topic: Job sequence compilation problems
Replies: 8
Views: 5212

Welcome aboard. :D

This problem usually arises from not having write permission to a folder on the client machine, which is where the XML portion is managed. Check that you can write in the DataStage folder and its subfolders on the client machine.
by ray.wurlod
Tue Nov 07, 2006 7:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS Hashed File
Replies: 11
Views: 5183

Think of a hashed file as a local database table that is very fast for key-based access. The answers to all your questions should flow from that thought. Any database stage can feed a reference input link to a Transformer stage.
by ray.wurlod
Mon Nov 06, 2006 10:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date time stamp difference in time stamp
Replies: 10
Views: 11974

We need more in the way of specification. It is unusual to seek to display an interval as a timestamp; it is more usual to use hh:mm:ss with hh being permitted to exceed 24. For instance, what is your rule when the difference is more than 24 hours - how do you wish your output to appear? The essence...
by ray.wurlod
Mon Nov 06, 2006 10:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: crosstab source
Replies: 9
Views: 3037

Looks like a job for a Pivot stage following a Transformer stage to me.
by ray.wurlod
Mon Nov 06, 2006 10:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: suggest which typr of partition i use in PX job..
Replies: 13
Views: 3941

Hash partitioning derives partitition number as: partition = Mod(hashvalue(key),@NUMPARTITIONS) hashvalue() is a function that generates an int32 result. Therefore, hash partitioning is totally dependent on the number of partitions, as I previously stated. Hashing is nothing more than a mechanism fo...
by ray.wurlod
Mon Nov 06, 2006 10:31 pm
Forum: General
Topic: Not able to run the executable job in different environment.
Replies: 12
Views: 6447

Look in your configuration file to determine which machine (fastname) is node1. Configure Oracle client software there. The shared library search path issue is not whether you can see them but whether DataStage processes can. Look at the "environment variable settings" in a job log - how is LD_LIBRA...
by ray.wurlod
Mon Nov 06, 2006 1:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: suggest which typr of partition i use in PX job..
Replies: 13
Views: 3941

Hash partitioning is also totally dependent upon the number of nodes.
by ray.wurlod
Mon Nov 06, 2006 1:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error while using ExecTCL
Replies: 2
Views: 1115

This prompt indicates that your SQL command is incomplete, and it's awaiting more. Append the missing trailing semi-colon to your statement and the prompt will not appear.
by ray.wurlod
Mon Nov 06, 2006 1:19 pm
Forum: General
Topic: Not able to run the executable job in different environment.
Replies: 12
Views: 6447

Both of those messages are totally clear. You have a node called node1 but there is no Oracle instance there. Configure one. The text of the second problem includes the diagnostic "the directory containing the library file is not on the library search path, or the library was compiled on a system th...
by ray.wurlod
Mon Nov 06, 2006 8:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: JAVA PACK - Documentation
Replies: 4
Views: 1451

Do you take backups of your data? You should also have backup contacts for support. What if something goes catastropically wrong? Hindsight is such a perfect science! I'm sure, if you phone your local IBM office, they'd be able to put you in touch with your account rep. Suggest you're thinking about...
by ray.wurlod
Mon Nov 06, 2006 8:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Px Field level Warnings(The modify operator keeps field)
Replies: 4
Views: 3307

At a guess you have specified a field in a KEEP specification but not in the record schema for the output link. There's nothing automatic in the Modify stage - it gets its speed from its simplicity. But that means you have to do the work.