Search found 53125 matches

by ray.wurlod
Wed Nov 01, 2006 3:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: replacing null column with some value and assigning a keyval
Replies: 20
Views: 4451

Compared to what? Why don't you do the research and let us know? Without tying up resources, we could only supply a theoretical answer in any case.
by ray.wurlod
Wed Nov 01, 2006 2:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Memory Usage
Replies: 2
Views: 716

There is no such tool. You need to identify the processes (from Cleanup Resources would do, or DS.TOOLS from a telnet session) and monitor their memory consumption (using Task Manager or Performance Monitor on the server machine).
by ray.wurlod
Wed Nov 01, 2006 2:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Not doing anything.
Replies: 7
Views: 1685

So what else is happening at these times? Is someone quiescing a database (even the DataStage Repository) perhaps?
by ray.wurlod
Wed Nov 01, 2006 2:52 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reg: Timestamp
Replies: 15
Views: 3897

Nah. Inflation will set in, and they'll devalue the second.
by ray.wurlod
Wed Nov 01, 2006 2:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSD.SEQOpen Failed
Replies: 23
Views: 6775

Check every folder in the path.

Can you open the file with View Data?

Do you see the file when you choose Browse for File when setting the File property?

What's different, in terms of access rights, between the two user IDs?
by ray.wurlod
Wed Nov 01, 2006 12:53 pm
Forum: IBM QualityStage
Topic: Can QualityStage read dataset files?
Replies: 11
Views: 3864

No. DataStage must read the Data Set. But the data stream into QS from DS through the plug-in - there is no requirement to use intermediate files. So the effect is of reading the Data Set directly. Be careful with the metadata. For example, if the plug-in executes a STAN job, then the output format ...
by ray.wurlod
Wed Nov 01, 2006 12:49 pm
Forum: IBM<sup>®</sup> DataStage TX
Topic: Multi formatted fixed width file
Replies: 8
Views: 3819

In a server job the easiest approach is to build the entire record as a single field (using stage variables as needed). The Fmt() function is useful for right padding. Output metadata is a single VarChar column (since your row lengths are 30 and 32 characters respectively).
by ray.wurlod
Wed Nov 01, 2006 12:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sort Stage
Replies: 8
Views: 3686

All that's fine. You just end up making more use of scratch disk, which will slow execution. If you have an external sort utility, or your own sort routine, you might invoke that instead. For example, the sort command in MKS Toolkit (a UNIX-on-Windows utility) is more efficient than the server Sort ...
by ray.wurlod
Wed Nov 01, 2006 12:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSD.SEQOpen Failed
Replies: 23
Views: 6775

My advice is that you shell out less than $1 per week to entitle you to read premium posts and to help us to fund this website. Revenue from premium memberships comes nowhere close to fully funding this site, which is why they run classes, sell sponsorships and are always willing to listen to other ...
by ray.wurlod
Wed Nov 01, 2006 12:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: job performance - lookup running very slow
Replies: 7
Views: 1185

Is the DB2 table on the same machine as the DataStage server? As a general rule, never perform lookups over networks; it is horribly slow, and makes horribly inefficient use of packets. Prefer instead to load only the required columns and rows into a hashed file (these will stream in in just a few s...
by ray.wurlod
Wed Nov 01, 2006 12:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: passing parameter values to Job Activity
Replies: 13
Views: 5786

Can you please edit the post with the code so as to disable smilies? This part of the log is of concern. SortChild.1.JobControl (@UpdateMasterSort): Controller problem: Error calling DSRunJob(UpdateMasterSort.S00198AE0 ), code=-14 [Timed out while waiting for an event] Starting Job UpdateMasterSort....
by ray.wurlod
Wed Nov 01, 2006 12:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Integretion of clearcase with datastage
Replies: 5
Views: 1546

And pretty straightforward now that IBM owns ClearCase! It's not 8.0. It may be 8.1, which means at least 12 months away. It may be pushed out even further, depending how difficult it is to do - they are also looking at integrating Information Server components (not just DataStage) with other source...
by ray.wurlod
Wed Nov 01, 2006 12:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: No of servers vs record volume
Replies: 7
Views: 1574

kcbland wrote:Each row is about 10 megabytes in content? Sheesh, that's a big row. :shock:

As one of the technical folks said in the early days of DataStage, in China or India 10MB is merely a transaction.
by ray.wurlod
Wed Nov 01, 2006 12:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Column Definition on an SQL Stored Proc
Replies: 7
Views: 1829

Can you enclose the column name in double quotes in the Derivation field?

Code: Select all

"Column A"
by ray.wurlod
Wed Nov 01, 2006 12:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Querying a hashed File
Replies: 15
Views: 3864

I'd suggest that Department_Number is not a column in the H_SK_ProductBrand table. You may have misspelled it or miscased it. Set a file pointer to H_SK_ProductBrand (if you haven't already, using SETFILE) and list its dictionary using the LIST.DICT command. This will allow you determine what the co...