Search found 42189 matches

by chulett
Tue Aug 24, 2004 3:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Auto-Purge Not working
Replies: 6
Views: 2119

I've seen behaviour like this before, it was a bug in the client from what I recall. :?

What happens if you try to set it to auto-purge after x number of job runs, instead of days? Does that stick?
by chulett
Mon Aug 23, 2004 10:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Date field to Oracle 9i Timestamp Field
Replies: 7
Views: 2619

Well, someone who actually uses ODBC with Oracle will need to chime in as I don't, preferring to use the native stages. Pushing it through as a char 6 doesn't sound quite right... I would *think* you are going to need time information in your string, not just the date. And I would guess that And jus...
by chulett
Mon Aug 23, 2004 8:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Date field to Oracle 9i Timestamp Field
Replies: 7
Views: 2619

Have you checked the docs for the ODBC plugin and verified the format it is expecting? People have been giving you advice assuming you were using OCI, but I'm not sure if it is exactly the same for ODBC. :? Also, just for grins, what are you defining the field as in DataStage?
by chulett
Mon Aug 23, 2004 8:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Date field to Oracle 9i Timestamp Field
Replies: 7
Views: 2619

What stage are you using? ODBC?
by chulett
Mon Aug 23, 2004 7:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage comparison to Oracle OWB
Replies: 11
Views: 6804

How tight are your PL/SQL skillz, Tony? :wink:
by chulett
Mon Aug 23, 2004 7:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Cobol Copy Book Meta data
Replies: 5
Views: 1702

Yah, they are valid... just not usually written that way. The sizing of the COMP-3 stuff can be strange at first, but the rules are simple. If you haven't found them yet, they are: * Count the number of digits. * Add 1 for the sign if present. * If the total is odd, add 1 more. * Divide by 2. So as ...
by chulett
Mon Aug 23, 2004 7:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problems with plugin shared libraries in 4.11b on HP-UX 11.0
Replies: 8
Views: 2712

How can I see what patches were installed in the DataStage Server? The patches mentioned above are Operating System patches, nothing to do with DataStage other than their effect on it. Check with your System Administrators, they can give you details about patch levels. All of the executions of the ...
by chulett
Sun Aug 22, 2004 7:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error while compiling job
Replies: 1
Views: 1111

It means you've created a "circle" or "loop" in your data flow, something that is not allowed and is caught by the compiler. Searching for "linear dependencies" shows several other discussions, one of which is here. Check that thread out or search for the others for some examples of the problems and...
by chulett
Sun Aug 22, 2004 7:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abnormal termination of stage
Replies: 3
Views: 1496

Not enough information. What happens when, after the job aborts, you reset it? Note, this is not recompile, it is the 'Reset' option available in the Director, the two backwards facing arrows like 'rewind' on a VCR. Let us know if, when you do so, any entries labelled 'From previous run...' appear i...
by chulett
Sat Aug 21, 2004 9:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: uniqueness check in sequential file??
Replies: 3
Views: 1619

No, sorry... no magic bullet. At least not on the Server side. If by chance your data is sorted such that you can take advantage of supressing repeating groups, you can do the fairly standard Stage Variable thing to check for duplicates. Let the first value pair through, suppress the rest. I'm guess...
by chulett
Fri Aug 20, 2004 8:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Tuning DS server
Replies: 20
Views: 7887

I'm pretty sure you do, Tony. I seem to recall it being documented in the .pdf or online help...
by chulett
Fri Aug 20, 2004 6:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: User defined sql table definition
Replies: 6
Views: 1157

The other option is "Fully Generated SQL", I believe. From what I recall, after you build the query you can click the 'Synchronize' button and it will create whatever columns are required to support the query. I think. I tend to avoid that particular way of doing things. :?
by chulett
Fri Aug 20, 2004 12:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date Conversion
Replies: 28
Views: 8315

The input is coming from character field like this: 20041030 I'm a little confused as well. This seems to match your desired output format and would (usually) mean no conversion was required. So, what are we missing? For what it's worth, DIGITS is a Built-In Transform that simplifies the call to OC...
by chulett
Fri Aug 20, 2004 10:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date Conversion
Replies: 28
Views: 8315

DIGITS will work fine and will remove all non-numerics. Phillip just needs to get his conversion tweaked a little. :wink:
by chulett
Fri Aug 20, 2004 9:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: The IF statement
Replies: 7
Views: 2501

You could change the derivation of the stage variable to make it a little easier - or at least what I think is a little easier on the eyes and brain. You don't need to explicitly set svAddItPrep to @TRUE or @FALSE: svTrimbOrgtgIbtN = 2610 or svTrimbOrgtgIbtN = 2710 or svTrimbOrgtgIbtN = 5810 or svTr...