Search found 53125 matches

by ray.wurlod
Tue Jul 20, 2004 6:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Data through Aggregator - not passed immediately
Replies: 3
Views: 1148

:idea: Tip

Just in case you can't figure it out, you clear a sort assertion in the Aggregator stage by setting the sort order to 0. (You can't just delete it.)
by ray.wurlod
Tue Jul 20, 2004 5:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Range Lookup
Replies: 5
Views: 1245

Yes, you lie to DataStage about which columns are "key" (arguably you ARE using them as secondary keys).
For performance, it is valuable to create an index on each such column.
by ray.wurlod
Mon Jul 19, 2004 2:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Source System showing vachar2 as Nvarchar in Manager
Replies: 9
Views: 3938

Metadata rule:

Code: Select all

8)
is the smiley with sunglasses.
So your

Code: Select all

decimal(38)
got converted by the metadata rule! :lol:
by ray.wurlod
Mon Jul 19, 2004 2:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error while renaming
Replies: 8
Views: 1670

If you'd like your own name, like sp_help or describe , all you need to do is load up the actual command (use LIST.DICT rather than LIST DICT ) in the Administrator client's command window, then save it using your preferred name. LIST.DICT has the ability to prompt for the hashed file name if it doe...
by ray.wurlod
Mon Jul 19, 2004 2:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Forcing a job to abort
Replies: 6
Views: 2679

I always advocate never allowing jobs to abort. That way the controlling job can remain in control. If there are problems these can be recorded, in the job log or elsewhere, and detected by the controlling job. Because the controlling job is still in control, it can take any required remedial action...
by ray.wurlod
Mon Jul 19, 2004 5:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Assigning output of a query to a JOB parameter
Replies: 5
Views: 1181

You need to know the key value for the row in the hashed file, and the field number in which the desired value resides. Let me take a shortcut by assigning these directly to variables. In the code example I'm going to read a variable from a hashed file and load that value into a parameter in an atta...
by ray.wurlod
Mon Jul 19, 2004 4:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Migrating Datastage Jobs to Production
Replies: 4
Views: 2004

Yes, there seems to be an inordinate penalty for using a quote. Walter?
by ray.wurlod
Mon Jul 19, 2004 4:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Two input lookup parameters within a query and subquery
Replies: 1
Views: 916

Yes, you can do this legally. You need to specify that the A.CASE_KEY and FD_RATES.TR_CD as "key" columns (even if this is a lie) so that you can supply reference key expressions to them. In turn, this means that A.CASE_KEY must appear somehow in the outer query. Why not load the inner query into a ...
by ray.wurlod
Mon Jul 19, 2004 4:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Strange data in a manually-created hash file
Replies: 4
Views: 925

You're not doing anything "wrong", per se. It's just that what you're looking at with the text editor is the file header, which contains management information, not data. The data starts later in the hashed file (exactly how much later depends on its tuning parameters). @ID is the default name for t...
by ray.wurlod
Sun Jul 18, 2004 5:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: what does this warining mean??
Replies: 5
Views: 1494

In this case, explore the Iconv() function in on-line help, and find out how to handle signed numbers with trailing sign. Use this function to convert the data to "conventional" format. Hint: it's part of the "MD" specification; find the MD topic in on-line help (or in the DataStage BASIC manual).
by ray.wurlod
Sun Jul 18, 2004 5:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Migrating Datastage Jobs to Production
Replies: 4
Views: 2004

The vital piece is to make sure that you've got everything you need. If you've been diligent about recording dependencies (this is why the Dependencies tab is there), then Version Control can pick up the dependent objects. There may be certain things external to DataStage that you also need to promo...
by ray.wurlod
Sun Jul 18, 2004 5:30 am
Forum:
Topic: MetaStage Benchmarking
Replies: 4
Views: 2309

The real question is what do you think would be a reasonable amount of time, given the complexity of the task that MetaStage is required to perform?

How fast do the competitive products run? Oh, silly me, it's patented technology - there ARE no competitive products! :lol:
by ray.wurlod
Sat Jul 17, 2004 5:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: what does this warining mean??
Replies: 5
Views: 1494

Line 186 does not refer to the data. It refers to the subroutine called JOB.1623522433.DT.1334767455.TRANS1 (which you can view in the RT_BPnnn directory, where nnn is the job number reported in the error message). This message usually arises from attempting to perform an arithmetic function or oper...
by ray.wurlod
Sat Jul 17, 2004 5:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Passing parameters for columns
Replies: 14
Views: 6835

... and you can retro-fit the apostrophe in "can't".

(Sorry, couldn't resist. The Apostrophe Kid)
by ray.wurlod
Sat Jul 17, 2004 4:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error Accessing Sybase Through ODBC
Replies: 7
Views: 2955

You wouldn't have a "create table" possibility if doing a SELECT. I suspect it's how the Sybase parser is treating a query with an unqualified table name, either checking to see whether it's in the temporary tables space, or preparing the SQL "in case" it's of the form SELECT ... to temptable; Find ...