Search found 53125 matches

by ray.wurlod
Fri Jan 13, 2006 2:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage 7.1 vs 7.5
Replies: 9
Views: 2981

Anupam, Start learning as much as you can about 8 (the "Hawk" release) as soon as you can. It is radically different. It uses a services-based architecture, it is not UniVerse-based under the covers any more, all Manager functionality and QualityStage functionality is incorporated into Designer, all...
by ray.wurlod
Fri Jan 13, 2006 3:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Rollback the tables
Replies: 6
Views: 1412

Of course. If you've committed, then the rows are in the tables. IF you're loading the tables via multiple input links to a single ODBC stage, then you can use transaction grouping to hold back any COMMIT until all rows are loaded into all tables. This can lead to huge transaction sizes, which may c...
by ray.wurlod
Fri Jan 13, 2006 3:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage 7.1 vs 7.5
Replies: 9
Views: 2981

I'm working on a 7.0 site this week, and it's horrible not having the job sequencer goodies such as expressions everywhere. You know what the issues are, you can avoid them. In general no upgrade of the product will improve performance. ETL performance is primarily a function of efficient design and...
by ray.wurlod
Fri Jan 13, 2006 3:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: jobnotify: System call error number 904.
Replies: 4
Views: 1274

You were running this in the Debugger. Does the same occur if you run the job without using the Debugger, and without using stage tracing? I have not seen that particular error number before; I suggest you report it to your support provider - they should at least be able to decode the number! Your j...
by ray.wurlod
Fri Jan 13, 2006 2:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Joining 2 Datasets using between logic??
Replies: 8
Views: 1958

Re: Joining 2 Datasets using between logic??

if u have any matching key between the dataset then u can use the lookup condition in look up stage to give the between logic. Can you be more specific? I understand that the lookup condition property determines whether the lookup is performed at all; if this condition is satisfied then the key val...
by ray.wurlod
Fri Jan 13, 2006 2:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage 7.1 vs 7.5
Replies: 9
Views: 2981

Depends. Probably about the same, given that you told us it's a server job. Not much changed there. Big changes in job sequences (more activities), and some changes in the way parallel jobs work. Read the readme file that accompanies 7.5 for more complete information about what changed.
by ray.wurlod
Fri Jan 13, 2006 2:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DSJOB ERROR ON UNIX
Replies: 1
Views: 1108

If urgent help is required contact your support provider and sign up for premium support. This is an all-volunteer site - we don't do urgent. May I suggest that you're not the first to encounter a segmentation fault (note: no capitals) or segmentation violation; there is a Search facility in the men...
by ray.wurlod
Thu Jan 12, 2006 11:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Phanto Error - Warning
Replies: 4
Views: 1175

It's not undeclared so much as uninitialized. When you create stage variables, make very sure that you always give them an initial value. Of course it may not be a stage variable that's causing this message. It may (for example) be a variable within a routine that's not assigned, which may mean that...
by ray.wurlod
Thu Jan 12, 2006 11:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle Bulk Stage
Replies: 2
Views: 823

Look at things that limit how large files can grow, such as free space on disk, the executing user's ulimit settings, whether there is a quota on the directory, and so on. It's impossible to diagnose with so little information. Your question is akin to "I drive my car for 120km then it stops. Please...
by ray.wurlod
Thu Jan 12, 2006 11:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Warings msgs for Update Or insert type in ODBC Stage
Replies: 8
Views: 2018

No idea. I'm not an Oracle DBA. Why don't you ask your Oracle DBA?
by ray.wurlod
Thu Jan 12, 2006 11:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job status for running
Replies: 15
Views: 7669

Is there a convention for naming the input link? If not, how do you propose to create an algorithm to request the row count from the input link? (Do it in English - we can get it into code later). Create a job that is a job control routine only. Here is its algorithm ( not its code): For each jobnam...
by ray.wurlod
Thu Jan 12, 2006 11:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error in "tsort" operator
Replies: 4
Views: 3836

Welcome aboard! :D

Tell us more about your job design. Are you using vectors, subrecords or tagged subrecords?

View the generated OSH, find the modify operator and check out what's happening nearby. Also check what's happening in and around the sort operator (obviously).
by ray.wurlod
Thu Jan 12, 2006 11:22 pm
Forum:
Topic: Where does Metastage look for metadata in Datastage?
Replies: 3
Views: 1812

Umm... "official"... hmm...

Don't know of any.

The best advice on best metadata practice, imho, can be had from Metaview360 - as it happens one of the sponsors of this site. Even if you don't buy their consulting or training services, there are some useful papers on their web site.
by ray.wurlod
Thu Jan 12, 2006 8:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Log
Replies: 10
Views: 2660

That will really impress your DBA. :twisted:

How about the system and statistics tables that describe how big database objects are?
by ray.wurlod
Thu Jan 12, 2006 8:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: unable to open the job
Replies: 10
Views: 2511

Do you really want to know about how it detects deadlocks? It's horribly complicated, involving lock tables, lock waiter tables and analyses of circularity (a deadlock does not necessarily involve just two processes!). It's the secondary task (of freeing up locks and shared memory held by defunct pr...