Search found 4992 matches
- Sun Feb 22, 2004 11:58 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Creation buckets On the basis of Value
- Replies: 8
- Views: 1928
Well, how many cpus do you have? Are you using job instantiation to divide-and-conquer process your source file? If you have 24 cpus, you could use 24 job instances to process 1/24th of the source data and thus achieve 24X the throughput. What's sooo slow about that? Now, if you say you have 2 cpus,...
- Sat Feb 21, 2004 6:11 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Creation buckets On the basis of Value
- Replies: 8
- Views: 1928
I think what the poster is asking to do is a pivot. In other words, take the source row and depending on the value place it into the appropriate column. Rather than put an If Then Else condition on every column derivation, he wants to know if there's a faster way if not easier way. One method is to ...
- Fri Feb 20, 2004 10:27 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: datastage reporting
- Replies: 3
- Views: 993
What do you mean by "explaining each stage"? Did you put comments in the comments box for each stage and want to display this? Or are you asking for a graphical output of the job design? Or do you want a textual regurgitation of the job design information? Or do you want a relational output of objec...
- Fri Feb 20, 2004 10:24 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Compiling Routines ... ??
- Replies: 5
- Views: 1332
Since they come with the install, they are already compiled. Somehow you lost the compilation. This was covered on the forum within the last couple of months, I did a quick search but didn't find it. There's no need to compile SDK routines so it's nothing you didn't do. Somehow the compiled logic wa...
- Fri Feb 20, 2004 8:53 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to implment SCD (slowly changing dimension)
- Replies: 1
- Views: 892
Yes, I have seen this problem many times. You need the benefit of a non-caching, instantly committed transaction without the performance overhead associated with such activity. If you look at the SCD question posted just a few days ago, where I listed a numerous number of links to posts covering thi...
- Thu Feb 19, 2004 11:18 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Help! Help! Help!
- Replies: 7
- Views: 2163
- Thu Feb 19, 2004 2:24 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Environment Variables Unix
- Replies: 3
- Views: 993
Did you search the forum for this topic? Start here:
http://www.dsxchange.com/viewtopic.php?t=86215&start=0
http://www.dsxchange.com/viewtopic.php?t=86215&start=0
- Thu Feb 19, 2004 12:12 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: how to improve performance of server jobs
- Replies: 10
- Views: 4087
yes, i do agree that TOAD may have misled me (my query was the exact view defintion that i copied), but in the Datastage job data starts flowing in from the oraoci stage that reads from that view pretty soon, i mean in couple minutes and not hours.. its the processing thats taking so long. NO. Its ...
- Thu Feb 19, 2004 10:21 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: how to improve performance of server jobs
- Replies: 10
- Views: 4087
Re: how to improve performance of server jobs
how long should a simple server job that reads from a view (view joins 4 tables.. but when i run this view in Toad, it gives results in 7 mins) This is invalid. Just running a query in Toad is not the same as spooling the data. If you do a "select count(*) from view" query, the database will optimi...
- Wed Feb 18, 2004 9:17 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Slowly Changin Dimension
- Replies: 8
- Views: 3102
- Wed Feb 18, 2004 9:15 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Does DS uses 2 processors on the same machine ?
- Replies: 4
- Views: 1309
You are using DataStage 5.x. This means that the jobs are single threaded, and have no inter-process stages. Because of this, a job will use only a single cpu. Run two jobs at the same time, you can use two cpus. If a job spends 1/4 the time on cpu #1 and 3/4 of the time on cpu #2, that's up to the ...
- Wed Feb 18, 2004 5:35 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: File Stage
- Replies: 4
- Views: 1338
Just setup a symbolic link to point to the appropriately named file. This allows your job to have a fixed name, and the symbolic link switches between files. An alternative is to copy the landed file into a processing directory under the fixed name. What is a symbolic link (is it another stage) how...
- Wed Feb 18, 2004 3:29 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to get field displacement from outside DataStage
- Replies: 6
- Views: 1444
Re: How to get field displacement from outside DataStage
Yes, I would like to have a data file with a file format. But I would like to get file format dynamically at runtime. Knowing a job name, a file name and a link name is it possible to access the job design at runtime and dump the file map into sum file where I can grep on field name and get a displ...
- Wed Feb 18, 2004 2:55 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: File Stage
- Replies: 4
- Views: 1338
- Wed Feb 18, 2004 2:24 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to get field displacement from outside DataStage
- Replies: 6
- Views: 1444
Are you asking about how to make a job publish a file format? Or how to extract the file definitions from the job design so that you can distribute a data file with a format file? You should be saving the file definitions for your output files in DS Manager. You do have options at this point on how ...