Search found 53125 matches

by ray.wurlod
Wed Feb 15, 2006 3:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Report on jobs currently running in DS server
Replies: 18
Views: 8030

Use Director client. It has a Print option, which has a Print to File option. Director also has a Filter - filter on job status so that you get just the running jobs. in Status view, select "print detail".
by ray.wurlod
Wed Feb 15, 2006 3:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: job being monitored eror
Replies: 11
Views: 2766

Even having the job log open in Director can lead to "may be being monitored".
by ray.wurlod
Wed Feb 15, 2006 3:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Retrieving Metadata dynamically at run time
Replies: 6
Views: 2537

That's a very easy one. It can't be done with this tool. DataStage is driven by the metadata, not the reverse. Some people elect to create a "generic table definition" with more than enough VarChar columns, but it's not really a satisfactory solution.
by ray.wurlod
Wed Feb 15, 2006 3:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Api C- code page
Replies: 1
Views: 1567

You're on the bleeding edge of the technology there, using the C API to create a project. I doubt that many folks have done what you're trying to achieve. There's got to be some property you can set, which is likely to be described in the C API manual. Off the top of my head I don't know what it is ...
by ray.wurlod
Wed Feb 15, 2006 3:30 pm
Forum: Data Quality Best Practices
Topic: QS: limitation using datafile
Replies: 5
Views: 10683

(I don't have an immediate answer. I shall give it some thought.) Meanwhile, if you post on Developer Net you may get an earlier response.
by ray.wurlod
Wed Feb 15, 2006 3:27 pm
Forum: Information Analyzer (formerly ProfileStage)
Topic: Invalid BROWSE Connection
Replies: 3
Views: 2617

It may have something to do with XP SP2 - check with your support provider as to whether there are any known issues on this platform.
by ray.wurlod
Wed Feb 15, 2006 3:25 pm
Forum: Enhancement Wish List
Topic: Smarter OCI stage wrt table creation
Replies: 6
Views: 2828

Yes/no/maybe. The problem in Oracle is that the DBA usually wants to exert some control over what tablespaces (etc.) get used. It would be really tricky to implement this generically.
by ray.wurlod
Tue Feb 14, 2006 11:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash file read cache limit
Replies: 8
Views: 1601

Why do I say it's not much of a gain? Because 1000MB is only 1MB more than 999MB. The limit in the client is an artifact of the spin button control only supporting three digits. The limit in uvconfig is a documented maximum. I have never tried setting it higher.
by ray.wurlod
Tue Feb 14, 2006 11:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequential stage - changing the default padding symbol
Replies: 8
Views: 5499

You can change an individual Sequential File stage pad character on the Format tab. You can change it individually within the Columns grid, either by scrolling to the right or by choosing Edit Row from the right mouse menu. But, I feel, your question is where does the default for all Sequential File...
by ray.wurlod
Tue Feb 14, 2006 7:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: insert/update based on non-key
Replies: 3
Views: 1049

Insert only will generate a new value of TID for every row sent - that is, because the INSERT statement is tried first under an "insert or update" rule, the auto-incrementing key will mean that the insert will succeed for every row. You would be better off to have two streams from the Transformer to...
by ray.wurlod
Tue Feb 14, 2006 7:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Can't login to Datastage
Replies: 4
Views: 1193

Whenever you start DataStage you should verify that the DataStage RPC daemon (or service, if on Windows) was started. On UNIX this runs as dsrpcd, so a suitable command to determine whether it is running would be ps -ef | grep dsprcd | grep -v grep On Windows-based servers you can simply examine the...
by ray.wurlod
Tue Feb 14, 2006 7:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to trim leading zeroes using trim()
Replies: 26
Views: 8042

Please don't hijack threads. Neither of your questions relates to trimming leading zeroes from strings in parallel jobs. Please start a separate thread for each, to assist future searchers.
by ray.wurlod
Tue Feb 14, 2006 5:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: where is job log stored?
Replies: 8
Views: 1987

Currently I'm working on a 7.0 site - no Advanced manual.
by ray.wurlod
Tue Feb 14, 2006 4:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage warning ds_uvput()_Write failed
Replies: 2
Views: 902

My guess is that you're trying to write to a hashed file, but there's something awry with the key value (where's the trailing quote character in the error message?). What happens if your target is a sequential file?
by ray.wurlod
Tue Feb 14, 2006 4:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: staging
Replies: 10
Views: 2496

What is your target? For example if you're loading a hashed file, duplicate key values are destructively overwritten. Do you have a constraint on your output link in the job design? Without knowing these kinds of things, it's really difficult to diagnose your "problem".