Search found 42189 matches
- Fri May 28, 2004 6:42 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: VARIABLE LENGTH VSAM FILES
- Replies: 4
- Views: 1504
My record contains a fixed portion for 170 bytes, then depending on a # of segments field, variable 30 byte segments. The CFF (complex flat file) stage may also be able to help. From what I recall, the CFF stage can handle this exact requirement, as long as you mean a "variable number of 30 byte se...
- Fri May 28, 2004 6:36 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DBMSCode problem
- Replies: 6
- Views: 1145
Welcome! Post some examples, please, of Oracle errors that are not being trapped properly. I haven't seen this issue, but then I'm running 7.x and OCI9 and I don't recall checking for it back in the 5.2 version. Keep in mind that not all "rejects" come from Oracle. DataStage can kind of "pre-reject"...
- Fri May 28, 2004 6:30 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Alpha Function & greater than checking
- Replies: 4
- Views: 1157
- Fri May 28, 2004 6:23 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Environment variables and Job Parameters
- Replies: 10
- Views: 2591
- Fri May 28, 2004 6:20 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: NOT FOUND CONDITION
- Replies: 4
- Views: 1000
As far as I know, these are boolean values and not meant to be used in quite the way you are using them. You should simply say: if link.NOTFOUND Then input value Else lookedup value I'm not sure what you mean about the spaces, but give it a shot like this and see how that works for you. I remember (...
- Wed May 26, 2004 4:50 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: parameter problem
- Replies: 17
- Views: 3872
- Wed May 26, 2004 6:34 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Orabulk load
- Replies: 1
- Views: 907
That's not an error, that's an informational message from the Bulk Load process. With a number like 64, I'd guess that was perhaps the total number of rows loaded. Usually commit points in a conventional load are multiples of 100, 1000, etc. Were there any other messages in the job's log? Failing th...
- Tue May 25, 2004 6:48 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: multiple lookup
- Replies: 5
- Views: 1109
The only caveat to that is to understand that these would no longer be 'silent' rejects. With that check box marked, any rows that go down that link will be logged into the job's log with a warning and a total rejected records count. Sometimes that's a good thing and sometimes that can be a bad thin...
- Tue May 25, 2004 6:44 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Environment variables and Job Parameters
- Replies: 10
- Views: 2591
In version 6 the job freezes the value of the environment variable as soon as you add it to your job parameter list. If you go and change the value of the environment variable your job does not use the newer value. Just to add a little more to what Vince said about the rather odd way they were impl...
- Tue May 25, 2004 6:39 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Multiple targets and restart
- Replies: 8
- Views: 3230
I'd suggest using @INROWNUM. Assuming your 'load' jobs work from landed flat files, this gives you a count of records to skip when restarting the job, regardless of how many rows this turns out to be in the target table (due to constraints, etc). In other words, don't track 'rows sent to target', tr...
- Tue May 25, 2004 4:36 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Sequential File Stage Delimiter as Parameter?
- Replies: 5
- Views: 1967
- Tue May 25, 2004 4:21 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: mulit source files
- Replies: 5
- Views: 1557
- Tue May 25, 2004 3:07 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Conditional INSERT/UPDATE
- Replies: 13
- Views: 3684
No. Simply check one of the key fields in the lookup you are using for null. If you put data in and it comes back null, the lookup has failed:
Code: Select all
IsNull(Lookup.xxxxx) - for Inserts
Not(IsNull(Lookup.xxxxx)) - for Updates- Tue May 25, 2004 2:46 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Unable to initialize plug-in:
- Replies: 7
- Views: 3343
- Tue May 25, 2004 2:44 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Sort stage failure
- Replies: 5
- Views: 1183