Search found 53125 matches

by ray.wurlod
Wed Feb 25, 2004 2:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Dependencies with routines and Job Control
Replies: 1
Views: 838

This is not the function of the Dependencies tab. The Dependencies tab is used so that you can record the other components on which this component depends, so that they are not left behind when promoting from development to test/QA to production. Entries on the grid on the Dependencies tab do not cr...
by ray.wurlod
Wed Feb 25, 2004 2:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using link collector
Replies: 2
Views: 831

Complete the following in 24 words or less.

Performance is defined as ...

Then we may begin to ask pertinent questions about what it is you're trying to ask!
by ray.wurlod
Wed Feb 25, 2004 2:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to delete a hash file using DS or DSCommands ?
Replies: 3
Views: 1847

Re: How to delete a hash file using DS or DSCommands ?

Hi , How to delete a hash file using DS or DSCommands ? I am temp. using hash files in a job.I want to delete those files after finishing the job. Is there any way i could do it in the same job itself ? Use an after-stage subroutine or after-job subroutine. Call the ExecDOS subroutine. In the Input...
by ray.wurlod
Wed Feb 25, 2004 2:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to submit a Datastage Job from UNIX command line
Replies: 8
Views: 4042

The same list, for BASIC, is in dsinclude/JOBCONTROL.H in your project directory. The constants are set up using EQUATE (rather than #define, which is for C). To use these in your routines, include the following declarations in the top of your source code. $IFNDEF JOBCONTROL.H $INCLUDE DSINCLUDE JOB...
by ray.wurlod
Wed Feb 25, 2004 1:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Executing Stored Procedure as a After Job Routine
Replies: 3
Views: 894

It is possible, but it's possibly not what you want to do. The technique is to use BASIC SQL Client Interface (BCI) functions to mimic code written to the ODBC API. You will need a licensed ODBC driver; the ones that come with DataStage are not licensed for this type of use. After establishing the t...
by ray.wurlod
Wed Feb 25, 2004 12:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: parrallel or server job
Replies: 2
Views: 1163

The first and obvious one is whether you're licensed for Parallel Extender. The easiest way to tell is when you create a new job in Designer, are you offered a choice that includes Parallel Job? The second criterion is multiple CPUs. The PX concept is to be able to throw LOTS of processing power at ...
by ray.wurlod
Wed Feb 25, 2004 12:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Control Character
Replies: 10
Views: 4586

You specified Parallel.
For the parallel canvas at 7.x there are two Transformer stage types, called the Transformer stage and the BASIC Transformer stage.
You need the latter. You'll find it in the Processing group on the Palette or in your Repository browser.
by ray.wurlod
Tue Feb 24, 2004 7:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Control Character
Replies: 10
Views: 4586

Preprocessing the file with the stream editor sed is probably the most efficient way to accomplish removal of non-printing characters. Within a BASIC Transformer stage you could take advantage of Oconv() with the "MCP" conversion specification, which converts non-printing characters to periods (for ...
by ray.wurlod
Tue Feb 24, 2004 2:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: To VC, or not to VC
Replies: 8
Views: 3345

Your Director may have a filter set that specifies "released jobs only". Check the filter settings (use Ctrl-T or right click in the background to get at the filter).
In Administrator check to see whether the operator role as the right to view all jobs.
by ray.wurlod
Tue Feb 24, 2004 2:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Accessing Hashed Files using UV stage.
Replies: 2
Views: 843

The answer, as always, is "depends". You'll get only a slight gain, maybe none, if you're comparing a local Oracle instance to a (the) local UV instance. Indexing the search columns will achieve gains, of course. And if the comparison is between a remote Oracle instance and a local UV instance, 'twi...
by ray.wurlod
Mon Feb 23, 2004 11:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem starting DS clients
Replies: 7
Views: 2742

"Unable to bind socket" usually results from the socket not having been release properly from an earlier run, or perhaps that something else is using the socket. DataStage RPC (the listener for the DataStage clients) listens on port number 31538 by default. The "Microsoft solution" (re-boot) is guar...
by ray.wurlod
Mon Feb 23, 2004 11:26 pm
Forum: IBM QualityStage
Topic: matching problem
Replies: 5
Views: 3473

What were the agreement score and disagreement score on the second row? Make sure both your cutoffs are between these two values if you need to discriminate.
by ray.wurlod
Mon Feb 23, 2004 3:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Difference between Decimal and Numeric data types?
Replies: 3
Views: 5700

DataStage (and UniVerse) treat DECIMAL and NUMERIC as synonyms. They refer to a numeric data type with a fixed number of decimal places.
by ray.wurlod
Mon Feb 23, 2004 3:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Any Shared Variable/Common Variable concept ?
Replies: 4
Views: 1439

While you are finding out there are more efficient (and probably safer) ways to go, no-one actually answered your question. At least not directly. @USER0 through @USER4 are common variables, and I said so! Nice thing is, you don't even have to declare them. There's also @USER.RETURN.CODE, should yo...
by ray.wurlod
Mon Feb 23, 2004 12:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Any Shared Variable/Common Variable concept ?
Replies: 4
Views: 1439

Putting a value on the link between two Transformer stages means that it is treated as a shared variable. There is no more efficient way. The so-called "user status area" is, in fact, a column in a row in a hashed file in the Repository, so involves I/O. There are five "user" common variables called...