Search found 42189 matches

by chulett
Mon Oct 04, 2004 10:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to enable menu bar after it has been closed in designer
Replies: 10
Views: 6500

I'm not really sure what you mean by the 'menu bar' but there are things that can disappear from the Designer that can be tricky to get back. Sometimes you can go into the Registry Editor and get things back that way, but I've generally found the easiest way is to simply reinstall the client. Missin...
by chulett
Mon Oct 04, 2004 5:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date Validation
Replies: 8
Views: 2079

And? :lol: Like I said, gotta do it in a routine.

Perhaps I should have said "It's the only way to use multiple lines of code or certain functions'. I'm sure Ray will be along later tonight to give us all the gory details of the Whys and the Wherefors. :wink:
by chulett
Mon Oct 04, 2004 4:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date Validation
Replies: 8
Views: 2079

No, you had it right at first - it must be done in a Routine. That is the only way to use multiple lines of 'code'. :wink:
by chulett
Mon Oct 04, 2004 1:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Migrating from Oracle 8 to Oracle 9i
Replies: 5
Views: 1875

Hmm... don't recall any posts mentioning any. :? There was at least one person who posted that they had used it and everything went just fine, from what I recall.
by chulett
Mon Oct 04, 2004 1:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Migrating from Oracle 8 to Oracle 9i
Replies: 5
Views: 1875

While you could continue to use the OCI8 stage to talk to Oracle 9i, you would need to leave a copy of the 8i client on the server and continue to point to it via your dsenv file. In the long run, you are much better off transitioning to the OCI9 stage. When you migrate, you'll need to update dsenv ...
by chulett
Mon Oct 04, 2004 11:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date Validation
Replies: 8
Views: 2079

Iconv is giving you an error on dates like that, you just aren't seeing it. Check out the online help for the Status function. It (among other things) allows you to check the success or failure of a date conversion, and the online help shows you how to do that.
by chulett
Mon Oct 04, 2004 11:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Simple Job Running for long time
Replies: 7
Views: 1617

Your 'simple job' is doing 45 million ODBC lookups over the course of its run. :shock: All this one at a time and over the network, unless your lookup sources are co-resident with the DataStage server.

Much better idea to bring this data into hash files and do the lookups locally against the hashes.
by chulett
Mon Oct 04, 2004 10:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Attempted WRITE with NULL record ID
Replies: 4
Views: 1358

You fix it by not writing records to a hash file with null keys, which is typically what generates this error. Add a constraint to either not send records with null keys to the hash or transform them to some sort of 'default' value. FYI, DataStage jobs typically have three exit statuses: Ran OK - st...
by chulett
Mon Oct 04, 2004 9:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Aggregator Grouping
Replies: 7
Views: 2233

I think you are going to need to adjust your 'sort' command. Since you don't specify a delimiting character, 'space' is used by default to count the fields. It looks to me what you are getting is a sort where it is considering all three of your fields as one long field, especially with the inclusio...
by chulett
Mon Oct 04, 2004 9:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle Option under DB Type in Designer
Replies: 4
Views: 716

This change is mentioned in the readme. They renamed the 'OCI9' plugin stage back to the more generic 'OCI' plugin as it now supports Oracle 9i and 10g. The upgrade automagically swaps all of your stages in existing jobs for you.
by chulett
Mon Oct 04, 2004 9:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Cant View full record in Data Browser DS 7.0
Replies: 4
Views: 705

I think this is a consequence of how record viewing is 'broken' in 7.x, where it tries to show you every field on the screen at once even if it needs to make each field a fraction of an inch wide to do so. :roll:

This has been fixed in the 7.5 release.
by chulett
Mon Oct 04, 2004 7:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sort stage Warnings
Replies: 6
Views: 2499

What "file stages" are you referring to that allow you to suppress fundamental data type mismatch warnings like this? :?
by chulett
Mon Oct 04, 2004 7:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Aggregator Function Removing Dates
Replies: 3
Views: 855

Technically, everything under the covers is a string in DataStage and also a Sequential file has nothing but Char data in it. Can't say why exactly it doesn't like your date format off the top of my head, but if you define it as a Char(10) you won't have problems. How much confidence do you have in ...
by chulett
Mon Oct 04, 2004 7:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sort stage Warnings
Replies: 6
Views: 2499

Only way to "turn them off" is to ensure they don't occur. Looks like you have an "empty" field that is being moved into a Long datatype and it doesn't like that. Can you check for and transform that to something else before the Sort stage, like to a NULL or a Zero perhaps?
by chulett
Fri Oct 01, 2004 12:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Getting Refreshed System time while the job is running
Replies: 2
Views: 898

Straight out of the online help for System Variables: :wink:

@TIME The internal time when the program started.

If you want the system time, you need to switch to the Time() function.