Search found 4992 matches
- Mon Sep 26, 2005 2:33 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: add_to_heap() - Unable to allocate memory
- Replies: 13
- Views: 2767
Somewhere around 5.0 preload switched to paging, so you're not guaranteed a full snapshot of the hash file in memory. I spoke at length with tech support regarding the new caching logic back then because there were GTARS opened regarding the incorrect handling of multiple updates to the same row in ...
- Mon Sep 26, 2005 2:24 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DataStage Job Abort...Unknown reason
- Replies: 7
- Views: 4666
- Mon Sep 26, 2005 2:21 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: CAN WE PASS INTEGER COLUMN TO DECIMAL COLUMN IN TRANSFORMATI
- Replies: 6
- Views: 1512
Server jobs are very gentle with mismatched data types. Your expression is invalid: If lo.custid Matches ("1970" Or "1971") Then in_data.value Else 0 can be: If lo.custid = "1970" Or lo.custid = "1971" Then in_data.value Else 0 or If lo.custid = 1970 Or lo.custid = 1971 Then in_data.value Else 0 Th...
- Mon Sep 26, 2005 2:20 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: CAN WE PASS INTEGER COLUMN TO DECIMAL COLUMN IN TRANSFORMATI
- Replies: 6
- Views: 1512
Server jobs are very gentle with mismatched data types. Your expression is invalid: If lo.custid Matches ("1970" Or "1971") Then in_data.value Else 0 can be: If lo.custid = "1970" Or lo.custid = "1971" Then in_data.value Else 0 or If lo.custid = 1970 Or lo.custid = 1971 Then in_data.value Else 0 The...
- Sat Sep 24, 2005 7:49 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Question: Active/Passive Stage and Intermediate Files
- Replies: 3
- Views: 1546
Passive stage - files, tables, ftp of a file, etc. Physical objects that are either sources to a operation or targets of an operation. Active stage - an operation that manipulates the data, ie transformers which derive outputs from input and reference sources or aggregator/sort/collect/partition sta...
- Fri Sep 23, 2005 10:18 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Difference between DS Transform, DS Routine, Function
- Replies: 4
- Views: 2762
Transforms: single lines of code that can be used in derivations and constraints. During compilation, the source code is substituted into the job design information and then compiled in. Changing the Transform requires recompiling all jobs that use it. Routines: subroutines that are CALLed from a jo...
- Tue Sep 20, 2005 10:46 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Unable to view data
- Replies: 7
- Views: 1380
- Mon Sep 19, 2005 8:32 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DSSEtLimit function
- Replies: 6
- Views: 1242
- Mon Sep 19, 2005 4:02 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Writing to a file from a routine
- Replies: 1
- Views: 608
Use the graphical metaphor and create a link out of a transformer stage. Use your functions or whatever to constrain the output. Your initial idea is not a good choice, avoid independent file i/o from functions in a transformer stage. Let the tool do the work it was designed to do. You'll be happier...
- Mon Sep 19, 2005 3:58 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DSSEtLimit function
- Replies: 6
- Views: 1242
- Mon Sep 19, 2005 3:57 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: UNION and FULL outer join
- Replies: 6
- Views: 1721
You can achieve the same effect with a series of hash files and passes thru the data. But it would not be the elegant solution. If a UNION is what you desire, that is a database action best suited to be done in a database. a UNION ALL can be achieved by simply concatenating like structured text file...
- Mon Sep 19, 2005 12:56 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Maximum field size in a hashed file?
- Replies: 6
- Views: 1190
Practical is easy, it's how much degradation you're willing to sustain reading all of that data from the hash, or potentially parking it in the hash. You also have to deal with the large record size, which means you're going to want to hand tune a static hash file. Still looking for that CLOB soluti...
- Mon Sep 19, 2005 11:17 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: LongVarChar source and DS job fails to recognize it!!!
- Replies: 15
- Views: 5510
If your data has any chance of containing a lot of characters in the CLOB column, you're better off not sending it thru DataStage. Think of it like sending an email with an attached file. Your email may be small, but the attachment can clog the network if it's of sufficient size. The same holds true...
- Fri Jul 22, 2005 7:27 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: RollBack Segment error
- Replies: 6
- Views: 1527
- Thu Jul 21, 2005 9:35 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: RollBack Segment error
- Replies: 6
- Views: 1527
When you run a select statement, Oracle copies everything that you are going to select into temporary space. If you take too long to go thru all of that data, Oracle ends your session because it can't hold all of that data any longer. Your issue is typical of people who attempt to take a lot of data...