Search found 53125 matches
- 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
- Wed Nov 01, 2006 2:59 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Memory Usage
- Replies: 2
- Views: 716
- Wed Nov 01, 2006 2:53 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Job Not doing anything.
- Replies: 7
- Views: 1685
- Wed Nov 01, 2006 2:52 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Reg: Timestamp
- Replies: 15
- Views: 3897
- Wed Nov 01, 2006 2:51 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DSD.SEQOpen Failed
- Replies: 23
- Views: 6775
- 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 ...
- Wed Nov 01, 2006 12:49 pm
- Forum: IBM<sup>®</sup> DataStage TX
- Topic: Multi formatted fixed width file
- Replies: 8
- Views: 3819
- 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 ...
- 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 ...
- 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...
- 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....
- 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...
- 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
- 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"- 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...