Search found 42189 matches

by chulett
Mon Jul 11, 2005 7:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: code to convert EBCDIC to ASCII
Replies: 13
Views: 4097

ArndW wrote:BTW, I just noticed that I broke the 10K barrier. Now I might rate a tag line as well.

Woo-hoo! 10 thousand points... that's somewhat... threatening. :wink: Don't spend them all in one place.

Looking forward to something pithy in your sig soon.
by chulett
Mon Jul 11, 2005 7:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: code to convert EBCDIC to ASCII
Replies: 13
Views: 4097

Hmm... sorry for shoving you back in the minefield Arnd. Hopefully it's not a issue as (you know) it will complicate things greatly without an FD that exactly matches what is being received.
by chulett
Mon Jul 11, 2005 6:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Number of users for datastage at a time
Replies: 3
Views: 1404

Exactly. It lists the maximum number of concurrent users allowed. Now, that can be a little tricky to define but from what I understand, up to 10 connections to the server from the same IP address are considered to be 1 user. I've heard of issues with certain versions where it can get 'confused' and...
by chulett
Mon Jul 11, 2005 6:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: code to convert EBCDIC to ASCII
Replies: 13
Views: 4097

As long as there's no packed fields in the file...
by chulett
Sun Jul 10, 2005 10:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ORA-01036 Illegal variable name / number
Replies: 12
Views: 4620

Ok. There's nothing stopping you from running this query without error, just wanted to make sure that was really what you wanted to do. To reiterate, you need to make sure that: * You are selecting three values in your query so you need three columns defined in the DRS lookup. Since this is a User D...
by chulett
Sun Jul 10, 2005 10:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to suppress warnings when using reject link
Replies: 9
Views: 7523

I think that's your only choice, but who knows? If someone has another idea, I'm sure they'll chime in. :wink:
by chulett
Sun Jul 10, 2005 9:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Removing licence without uninstall
Replies: 8
Views: 1990

Out of curiousity - the point of doing this would be? :?
by chulett
Sun Jul 10, 2005 9:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to suppress warnings when using reject link
Replies: 9
Views: 7523

A limitation? No, just the way it works. I'd say that any solution will require a certain amount of work as all jobs will need to be edited in some fashion. There's no 'magic bullet', no switch to turn that functionality off. If you want to leave your current Reject functionality in place, it sounds...
by chulett
Sun Jul 10, 2005 8:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to suppress warnings when using reject link
Replies: 9
Views: 7523

Welcome! The answer is deceptively simple - don't check the Reject Row box. When it is checked, a Warning with the total rejected row count is written to the log. If you want the records written out without the warning, don't check the box but instead logically send the 'rejected' records down the l...
by chulett
Sun Jul 10, 2005 6:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Row out of sequence - Error
Replies: 15
Views: 4935

If you don't have an ORDER BY clause in your SQL then you shouldn't be asserting the data is sorted in the Aggregator. Unless there is a Sort stage involved... Why not let the database do the grouping for you? Unless you are grouping on fields derived in the job, your source database should be able ...
by chulett
Sun Jul 10, 2005 6:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Row out of sequence - Error
Replies: 15
Views: 4935

So by checking the order in the sort stage and the properties box where we manually provide like Col1 ASC, Col2 ASC the error can be resolved. Yes - as long as they match! Keep in mind your ORDER BY clause will need to do the NVL as well if you are sorting on that column. Thats a long way too as I ...
by chulett
Sun Jul 10, 2005 6:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: To GROUP data can we use Just SORT and not Aggregator
Replies: 3
Views: 844

Sure. Proper sorting (and marking of same in the Aggregator) would make the aggregation go faster. It becomes more of an issue on larger data sets, perhaps when you have 100x that amount of data, as 'too much' unsorted data can crash the Aggregator stage.
by chulett
Sun Jul 10, 2005 5:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Deleting Hash files
Replies: 2
Views: 1116

More specifically, the way you delete a hash depends on how it was created. For hash files in an Account created via CREATE.FILE, then yes - use DELETE.FILE to delete them. Pathed Hash files are created using the mkdbfile command and are deleted from the operating system using your command of choice...
by chulett
Sun Jul 10, 2005 5:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: To GROUP data can we use Just SORT and not Aggregator
Replies: 3
Views: 844

Nope. Sort stage does sorting. Grouping is a function of the Aggregator.

What you've noticed is one of the joys of leveraging a common GUI across multiple stages - all the bits don't always apply to all of the stages you see the bits in.
by chulett
Sun Jul 10, 2005 5:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Row out of sequence - Error
Replies: 15
Views: 4935

In my SQL Query I am using NVL(column,NULL) I'm sorry, but what would be the point of doing that? NVL substitutes another value for nulls in the field you are querying and you are telling Oracle that, when your column is null, to pass the null. Might as well not have the NVL function in your query ...