Search found 53125 matches

by ray.wurlod
Thu Feb 03, 2005 2:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Derived parameters
Replies: 11
Views: 3142

If you create a Job Sequence and compile it successfully, you can view the generated code on the Job Properties window Job Control tab.

It's a bit daunting because of all the name re-mappings and computer-generated variable names, but can be edifying nonetheless.
by ray.wurlod
Thu Feb 03, 2005 2:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error adding to schedule
Replies: 2
Views: 2290

Also check the permissions on the directories where cron and at jobs are stored. Depending on the UNIX, these can be called cronjobs and atjobs or something similar. They are sometimes installed with "other" having no rights at all. To use at/cron, you need r-x permission on these directories.
by ray.wurlod
Thu Feb 03, 2005 2:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: need documentation for running DS jobs in Unix
Replies: 5
Views: 2689

In the Parallel Job Developer's Guide the page number is 57-130. You can also run jobs from the Director client. You can also schedule jobs from the Director client; the GUI is a front end to the operating system's at/cron scheduler. For information about these, see the Director Guide (dsopsgde.pdf)...
by ray.wurlod
Thu Feb 03, 2005 2:22 pm
Forum: IBM<sup>®</sup> DataStage TX
Topic: Want to learn TX
Replies: 1
Views: 1894

Visit the Ascential web site and look for Education under Services. There you will find the details of courses available and the schedule, at least for some countries. You can also take classes via "e-Learning".
by ray.wurlod
Thu Feb 03, 2005 2:18 pm
Forum: Information Analyzer (formerly ProfileStage)
Topic: Urgent - ODBC configuration
Replies: 2
Views: 3034

There's no DSN for dwh1 in your odbc.ini file. You need, at a very minimum:
an entry for dwh1 in the [ODBC Data Sources] section
a section for [dwh1]
by ray.wurlod
Thu Feb 03, 2005 12:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: call custom user-defined,Routine or transform in job control
Replies: 3
Views: 1234

You have to declare to your job control that the user-defined routine exists and supply argument placeholders and catalog name. DEFFUN RoutineName(Arg1, Arg2, Arg3) Calling "DSU.RoutineName" The "DSU." prefix is DataStage's way of identifying user-written routines. You simply can n...
by ray.wurlod
Thu Feb 03, 2005 12:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Derived parameters
Replies: 11
Views: 3142

Your JobB is a job sequence lovingly hand-crafted. :D You've created job control code. All a Job Sequence is is a graphical user interface to doing exactly the same. Obviously hand-coding allows for maximum flexibility and flair, while using a Job Sequence allows for maximum ease of use, particularl...
by ray.wurlod
Wed Feb 02, 2005 8:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: about # value
Replies: 3
Views: 991

# as an operator is one of four ways to express "is not equal to" in DataStage BASIC expressions. The others are:
    <>
    ><
    NE
by ray.wurlod
Wed Feb 02, 2005 8:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: about @False
Replies: 4
Views: 1076

@FALSE will prevent any row from being passed along this link. This is calculated before any output column derivations are executed, so that neither the incoming values, nor anything else, can affect that decision. So, in your design, there will be zero rows sent along the first three output links. ...
by ray.wurlod
Wed Feb 02, 2005 8:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: cannot give exclusive permissions......A strange problem
Replies: 5
Views: 1937

That is singularly dangerous advice. What about all the other locks that are held by that process? They are there for a reason. The only time that you can safely release ALL locks held by a process is when you can be 100% sure that that process cannot release them itself; that is, when that process ...
by ray.wurlod
Wed Feb 02, 2005 3:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS Server - Benchmark
Replies: 11
Views: 3267

Rows per second is meaningless except to compare different runs of the same job processing exactly the same data and provided that there is a substantial volume of data. A job with 200-byte rows might achieve 3000 rows per second. The same job with 2000-byte rows would be expected to achieve about 3...
by ray.wurlod
Wed Feb 02, 2005 3:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Space in directory to OEPNPATH function
Replies: 8
Views: 3417

One workaround that I've used in the past is to use the DOS 8+3 names, which can never have spaces in them. Check also the !GET.PATHNAME and !MAKE.PATHNAME subroutines in the DataStage BASIC manual; these might help you to generate a value that OpenPath() can use. Ultimately, though, eschew spaces i...
by ray.wurlod
Wed Feb 02, 2005 2:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Derived parameters
Replies: 11
Views: 3142

Conversion from one parameter to another can be done, for example, in a Routine invoked from a Routine Activity in a Job Sequence. That Job Sequence can then start the job with the resolved values supplied as values for its parameters.
by ray.wurlod
Wed Feb 02, 2005 2:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Derived parameters
Replies: 11
Views: 3142

you can try using the DSSetParam with the DSJ.ME job handle in the job control section

This does not work. A running job is not permitted to change its own parameter values.
by ray.wurlod
Wed Feb 02, 2005 2:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Underlying Architecture
Replies: 3
Views: 1765

Welcome aboard! :D While I agree with the sentiment expressed by Ogmios, I will point out that there is a short piece on DataStage architectures in the FAQ forum. There are, in fact, four different architectures that you may need to consider, and that's without even contemplating connections to data...