Search found 42189 matches

by chulett
Sun Apr 08, 2007 5:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: User id permissions
Replies: 7
Views: 1408

All the developers have admin login as it is windows usr/pwd. Let's clarify something. I don't mean a login that get's them into the Administrator client, everyone has that. I mean do they have the 'admin' password - the password for the 'dsadm' user? Most of the dangerous stuff is disabled unless ...
by chulett
Sun Apr 08, 2007 5:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: User id permissions
Replies: 7
Views: 1408

'You' in this case would be your company not you you.

I just mean a mechanism for distributing software to remote PCs without having to go to each individually to install stuff. A 'Push' system, like the one we use - ROVA. Do you have anything like that?
by chulett
Sun Apr 08, 2007 4:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: User id permissions
Replies: 7
Views: 1408

All the developers have admin login That's a problem. I would like developers to access designer and director and not Administrator. Seriously, remove the Administrator tool from their PC. If you have any kind of enterprise software delivery system, it can be done rather easily. What they giveth, t...
by chulett
Sun Apr 08, 2007 4:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Is anyone using Server 7.5.2 on HP-UX without issue?
Replies: 6
Views: 1348

I'd just like to get one job, running all by its lonesome, to not core dump on me. :cry:
by chulett
Sun Apr 08, 2007 4:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Read From Dataset is slow
Replies: 6
Views: 1472

I think it's a great descriptive moniker for the phenomenon. :D
by chulett
Sun Apr 08, 2007 4:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: User id permissions
Replies: 7
Views: 1408

Uninstall it from their PC. Other than that... [shrug]

As long as they don't have the 'admin' userid / password, what kind of things are you worried about them doing there?
by chulett
Sun Apr 08, 2007 4:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Is anyone using Server 7.5.2 on HP-UX without issue?
Replies: 6
Views: 1348

I'll try that, right now I'm fairly certain it is set the same as all other servers. Odd thing with this was 7.5.2 was installed September '06 and ran 'fine' until mid February when the problems started. No-one on the infrastructure side can tell me what, if anything, changed. I've also asked if the...
by chulett
Sun Apr 08, 2007 9:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hands on
Replies: 6
Views: 1563

Do you have access to the Enterprise Edition and therefor Parallel jobs? Or 'just' Server jobs as you've marked the post? They are totally different animals. Other than reading through the manuals, there should be a Tutorial cdrom amongst the media your company received. Use it to install some examp...
by chulett
Sun Apr 08, 2007 8:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Operatiing system
Replies: 3
Views: 1106

If you scroll down to the next to last post here, you'll see what is in the manuals for installing everything on Windows.

Also, the Server component can live on most flavors of UNIX. As noted in the other post, this is in the Installation and Upgrade Guide pdf in your Docs directory.
by chulett
Sat Apr 07, 2007 10:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: logic for updating date
Replies: 5
Views: 1292

There are functions available to handle 'Julian' dates. Use them to convert your 'last day of the month' to julian format, add 1 to that date (which will add 1 day) and then convert it back to an external date.
by chulett
Sat Apr 07, 2007 9:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Number of server jobs in sequence
Replies: 4
Views: 1963

In other words, something had changed - the manner in which you logged on! :wink:

There are all kinds of odd issues from using 'Omit' that we've seen here...
by chulett
Sat Apr 07, 2007 8:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Call to input link returned numeric error code: 19
Replies: 7
Views: 5027

That was all from a job that wasn't causing problems before the 'downgrade'. I've just rerun the job noted earlier and it is still behaving in a very similar manner as before - aborting after producing an amount of XML: Message: DODSLDHAssetTerms..XML_Output_Ldh_terms: At row 14139141, link "Mo...
by chulett
Sat Apr 07, 2007 6:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Call to input link returned numeric error code: 19
Replies: 7
Views: 5027

The saga continues. After failing to reach any conclusions with IBM Support as to what might be causing 7.5.2 to misbehave on this server and in an effort to isolate the issue, we rolled back to 7.5.1A - a version we use on three other servers with no issues. Took a full export from another machine ...
by chulett
Fri Apr 06, 2007 12:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Duplicate Row Issue
Replies: 10
Views: 3009

Would have been nice to have sample data that matched reality a little better. You can still sort, yes. Just to beat this horsey a little longer... Assign a record number to each row in a transformer, @INROWNUM will work nicely. Then use a Sort stage to sort ascending on your key field and descendin...
by chulett
Fri Apr 06, 2007 12:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Duplicate Row Issue
Replies: 10
Views: 3009

So, from your eample: Member_key Id_key 1234 23 1234 24 1234 25 You would like the Id_key of 23 to be stored for Member_key 1234? You've said you've done an order by, now you just need to make the secondary sort descending. Something like: ORDER BY Member_key, Id_key desc That should make them arriv...