Search found 42189 matches

by chulett
Thu Feb 24, 2005 9:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: sql query
Replies: 5
Views: 1340

And then explain exactly what "doesn't work" means. :wink:
by chulett
Thu Feb 24, 2005 9:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Sequence
Replies: 13
Views: 3692

Sounds like the SP2 bug I mentioned... is that possible?
by chulett
Thu Feb 24, 2005 8:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: dscmdexport command
Replies: 14
Views: 3223

Thanks guys... I think Mat should be good to go now. :wink:
by chulett
Thu Feb 24, 2005 8:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: file should be cleared after taking values from the file
Replies: 5
Views: 1438

I prefer to archive files of this type rather than simply removing them. This could be accomplished using the 'mv' command rather than 'rm', but you'd typically want to take an extra step to 'timestamp' the file as well in a script. We also use tar and compress to periodically create 'tar balls' of...
by chulett
Thu Feb 24, 2005 8:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: dscmdexport command
Replies: 14
Views: 3223

Interesting. That's certainly not the behaviour I'm seeing. Perhaps it is version related? I am running the 7.x version of DataStage and the export command rather than the 6.x version that you are. Other than that... Maybe you could try Kim's version which 'unlocks' all of the jobs first. Sounds lik...
by chulett
Thu Feb 24, 2005 8:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Sequence
Replies: 13
Views: 3692

Re: Job Sequence

If I try to access its properties nothing is display and when I write click on it the "open job" function is greyed out. The 'warning triangles' are normal and just mean you haven't 'configured' or added any metadata to the stage yet. I don't understand what 'nothing is displayed' means when you ac...
by chulett
Thu Feb 24, 2005 1:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can two jobs append to the same sequential file simultaneous
Replies: 7
Views: 2085

It's not working fine... it can't be. Sequential files are by definition single writer type structures and cannot be (successfully) written to simultaneously by multiple processes. This is not a DataStage 'limitation' but the nature of the beast. You either need to append to the file in a serial fas...
by chulett
Wed Feb 23, 2005 10:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Maximum no of mail id to be given in a job
Replies: 9
Views: 1932

As my OS is Windows and UNIX so can any one put some light on this issue. You might want to clarify this. It's one or the other when discussing server platforms. Issue the 'blat' command from the command line yourself, passing it 9 email addresses and a file attachment to send. If it works like tha...
by chulett
Wed Feb 23, 2005 3:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routine Code
Replies: 17
Views: 8251

THAT I would have believed. :roll: :lol:
by chulett
Wed Feb 23, 2005 11:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routine Code
Replies: 17
Views: 8251

Not sure if you have a question here or not... but I'd suggest sticking with the syntax that works. :wink:

Code: Select all

If Club = 'c' THEN Ans = '2' else Ans ='0'
by chulett
Wed Feb 23, 2005 7:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Where is BASIC Transformer Stage ???
Replies: 11
Views: 2834

Silly question, but if it's not there, are you sure you are running PX? I thought it was still in 'beta' for Windows. :? The other confusion is PX for Windows only runs on what - Windows Server 2003? - XP is not a supported platform for any product other than the client, as far as I know.
by chulett
Wed Feb 23, 2005 7:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Delete table before loading
Replies: 15
Views: 5084

You might also want to explain what "truncate is not working" means. If it's a permissions problem, I'd be surprised if you could turn around and drop the table. Plus, don't forget you'd lose everything associated with that table when you drop it - grants, indexes, yada yada yada. Those (if any) wou...
by chulett
Wed Feb 23, 2005 7:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Clean up Director logs
Replies: 7
Views: 2969

Some sort of 'auto-compile' might help too, I would think, as that removes them as well.
by chulett
Wed Feb 23, 2005 7:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Maximum no of mail id to be given in a job
Replies: 9
Views: 1932

Not something that I believe we can answer. First off, since you are on a Windows server, what are you using for email? Something like 'blat' or ??. Let us know and then others might be able to give you more specific help. That would be where I would start looking for answers right now as I really d...
by chulett
Wed Feb 23, 2005 7:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routine Code
Replies: 17
Views: 8251

Ok, just because this is bugging me and I really want to understand this Wurlod Nugget o' Fun... how does it return a '2'? I can see how it returns the '0' on the other side the 'else' but it actually sets a variable called COUNTRY_CDE to '2', not 'Ans' when the expression is true - hence the puzzle...