Search found 53125 matches

by ray.wurlod
Wed Dec 20, 2006 4:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Call job each 30 minutes
Replies: 16
Views: 4298

SLEEP hh:mm

Not documented in DataStage BASIC manual.

Been around since the early days of UniVerse, but not documented in UniVerse BASIC manual either.

One of those undocumented features no-one seems to have a list of.
by ray.wurlod
Wed Dec 20, 2006 12:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Work-around for SPARSE lookups on Windows
Replies: 2
Views: 1267

Yes, it's called Linux. Same hardware, sparse lookups are supported. I don't believe there's much you can do at the software level - convince "them" that more memory is required. And more disk, because you may need to spill into the scratch disk areas. Is it possible to perform a left outer join in ...
by ray.wurlod
Tue Dec 19, 2006 11:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Splitting One File to Multiple Files
Replies: 21
Views: 10159

Heck, yes. A Filter stage or a Transformer stage with 100 output links. Easy.
by ray.wurlod
Tue Dec 19, 2006 11:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Usind shell Script in DataStage(Px)
Replies: 11
Views: 3609

Sounds like you're looking for the External Filter stage or the Wrapped stage. The former you will find in the Parallel Job Developer's Guide while you will find the latter in the Parallel Job Advanced Devloper's Guide.
by ray.wurlod
Tue Dec 19, 2006 10:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: TimeStamp Difference
Replies: 11
Views: 4021

Well, you can always work at the millisecond level, which IS supported. Indeed you can get the values for CPU and elapsed time (to millisecond accuracy, rounded) in log messages, so you don't even need to calculate them yourself.
by ray.wurlod
Tue Dec 19, 2006 10:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: TimeStamp Difference
Replies: 11
Views: 4021

Was the second post a "jitter on your Windows box"? :lol:
by ray.wurlod
Tue Dec 19, 2006 10:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Connecting to an oracle table using oracle enterprise stage!
Replies: 5
Views: 1553

Paths. Command directory search path (PATH) and shared library directory search path (LD_LIBRARY_PATH or SHLIB_PATH or LIBPATH depending on your operating system).
by ray.wurlod
Tue Dec 19, 2006 10:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Call job each 30 minutes
Replies: 16
Views: 4298

Not NAP for sleeping up to 30 minutes! :shock:
by ray.wurlod
Tue Dec 19, 2006 10:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: regarding dsfunctions
Replies: 6
Views: 1593

It is really bad practice to call DSGetLinkInfo() from within a Transformer stage, because you have to call it for every row processed, and the answer is already there in @INROWNUM or @OUTROWNUM system variables. The overhead of calling it repetitively and unnecessarily will cause poor throughput, a...
by ray.wurlod
Tue Dec 19, 2006 5:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: using hashfile
Replies: 10
Views: 2829

LOOK at the error message! What you say is not what you did, or the error message is not being generated from the Hashed File stage you have been tampering with. You claim to have specified C:\HashFiles\Hash_File2 as the directory pathname. Why, then is DataStage trying to create a hashed file calle...
by ray.wurlod
Tue Dec 19, 2006 5:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Call job each 30 minutes
Replies: 16
Views: 4298

Quite.

Create a routine. Use the fact that the SLEEP statement has two syntaxes - one that sleeps for a given number of seconds, the other that sleeps until a particular clock time. Being in a routine, it is easy to calculate the next 30 minute point.
by ray.wurlod
Tue Dec 19, 2006 5:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: passing encrypted parameter passwords from our control job
Replies: 1
Views: 786

Welcome aboard. :D

You can reset parameter defaults in the Director client, but this does not change the design-time defaults.

Contact your support provider to ask whether there are any known issues in your version of DataStage related to what you are trying to accomplish.
by ray.wurlod
Tue Dec 19, 2006 5:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: reject at 0 record
Replies: 11
Views: 3873

Import errors are row #0 are typically caused by neglecting to set the First Line is Column Names property to True.

The raw form of the "data" - here { I D } - helps to confirm that this is the case. Clearly "ID" can not be an integer.
by ray.wurlod
Tue Dec 19, 2006 5:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Add 1.5 days or 36 hrs to input date.
Replies: 2
Views: 1403

It is not possible to add 1.5 days to a date. It is, however, possible to add 1.5 days (36 hours) to a timestamp. There is no AddDate() function out of the box, though you could write one if desired. Otherwise, use one of the approaches that kumar_s suggests. Note that there are 86400 seconds in one...
by ray.wurlod
Tue Dec 19, 2006 5:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Cleaning the Scratch space
Replies: 9
Views: 9354

This is a property of the Oracle bulk loader stage (or the Oracle Enterprise stage). The answer, therefore, is "wherever you specify". Right now I don't have access to Enterprise Edition, so can not research what the default value for this property is.