Search found 53125 matches

by ray.wurlod
Thu Dec 23, 2004 5:21 pm
Forum: Site/Forum
Topic: SETFILE related question
Replies: 3
Views: 2564

Determine the environment variable's value however you like, for example using Call DSExecute("UNIX", "echo $HASHPATH", HashDirPath, Code) The result is in the variable called HashDirPath. Build your SETFILE command. Command = "SETFILE " : HashDirPath : "/&...
by ray.wurlod
Thu Dec 23, 2004 3:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Job 96 Phantom 5996
Replies: 6
Views: 2911

You won't see a variable called $R61 in the code; this is a temporary variable used to hold some intermediate value in an expression. It will, therefore, be that more difficult to track down. Test your Routine rigorously; make sure there is no path through it in which any variable (including the arg...
by ray.wurlod
Thu Dec 23, 2004 3:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to retrive unmatching records from lookup
Replies: 8
Views: 2897

Re-read what you asked, which Mike has highlighted. The purpose of a lookup is to find what's there. If it's not there you can't find it! Therefore there will be no "unmatching records". As Mike said, it appears that you're seeking to perform a full outer join (or union); all values irrespective of ...
by ray.wurlod
Thu Dec 23, 2004 2:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error in executing Datastage job
Replies: 8
Views: 6353

In earlier releases, $? returned the exit status of dsjob , not necessarily of the DataStage job itself. In recent releases (7.1 and later?) this behaviour was changed. For a couple of interim releases, it was necessary to specify -jobstatus rather than -wait to have the exit status report the final...
by ray.wurlod
Thu Dec 23, 2004 2:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Run a datastage job from webserver
Replies: 4
Views: 1878

RTI Services is an add-on (= more money) and comes with a manual describing the APIs for Java, COM and C. More precisely, the Quality Stage Real-Time client includes this manual. It's not horribly difficult; there are only six classes in each API, and the methods and properties are pretty much what ...
by ray.wurlod
Thu Dec 23, 2004 2:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ACESS DENIED Project currently locked
Replies: 3
Views: 1123

You need to monitor the server with the $DSHOME/bin/list_readu command, to establish what locks are held. Also have support advise which part of the code generates this particular message. The only time I've seen it is while an administrative function that requires exclusive action is running. Could...
by ray.wurlod
Thu Dec 23, 2004 2:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to get job name for list of hash file
Replies: 22
Views: 6642

Try changing AS LINK_NAME (which sets up an alias) with COL.HDG 'LINK_NAME' (which merely sets up a column heading). I got the same alias problem; changing to COL.HDG fixed it. You may get repeats (for example in jobs where two input links run into the same hashed file stage). You can, of course, el...
by ray.wurlod
Thu Dec 23, 2004 2:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Import error
Replies: 1
Views: 801

It is not possible. DataStage does not permit retrogression via exports (or by any other means of which I am aware).

Document your job from 7.5, perhaps using the Reporting Assistant. Then re-design the job (yes, manually) in 7.0.1.
by ray.wurlod
Thu Dec 23, 2004 2:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DSSendMail Template
Replies: 1
Views: 1107

You don't have to configure the template, it works fine as is. You can configure the template if you want to - that's an entirely different thing! Fairly complete instructions are within the template itself. Take a look at the DSSendMailTester routine (category Built-In\Utilities), which allows you ...
by ray.wurlod
Thu Dec 23, 2004 2:24 pm
Forum: Site/Forum
Topic: Problem searching
Replies: 3
Views: 2462

This can also occur trying to access a topic from "n new posts", which I guess is a search under the covers. There is a workaround; you can get to the forum via its link, rather than to the topic via its link. Of course, with new posts they're always at the top; for subject-based searches it's not s...
by ray.wurlod
Thu Dec 23, 2004 12:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Run a datastage job from webserver
Replies: 4
Views: 1878

The best, and easiest, way to do this is to involve the DataStage Real Time Interface (RTI) Services. You can read the marketing blurb on the Ascential web site . Essentially, the RTI Services allow you to: run DataStage jobs in batch mode run DataStage jobs that use an RTI Output stage so can deliv...
by ray.wurlod
Thu Dec 23, 2004 12:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Configuring Oracle Stage in Parallel Extender
Replies: 4
Views: 1639

Because, for server jobs, it is immaterial whether the table is partitioned, so the check is not performed.
:idea:
by ray.wurlod
Thu Dec 23, 2004 12:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Update Environment variable run time
Replies: 11
Views: 7207

It is not permissible to change the value of a job parameter once the job has started. Job parameters are read into a static area when the job is started, and are ineligible to be changed. Even if you can change the value of the environment variable upon which a job parameter is based, the value of ...
by ray.wurlod
Thu Dec 23, 2004 12:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Creation on a sequential file based on a condition
Replies: 2
Views: 1149

The problem is, what becomes of the result of the SQL query in the first job? Presumably this is being written to a sequential file. Your Job Sequence, therefore, should run the first job then introduce some way to determine whether the file has zero length or not (use a Command Activity with the te...
by ray.wurlod
Wed Dec 22, 2004 8:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: To run a job with job parameters...........
Replies: 11
Views: 5988

Probably easier to do it via editing an export file than trying to get at parameter values through the Repository tables themselves. Remember there are three sets of parameter values if you do it the latter way; the design time default values, the run time default values (set in Director), and the a...