Search found 42189 matches
- 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 ...
- 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?
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?
- 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...
- 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
- 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
- Sun Apr 08, 2007 4:28 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: User id permissions
- Replies: 7
- Views: 1408
- 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...
- 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...
- 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.
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.
- 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
- 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
- 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
- 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 ...
- 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...
- 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...