Search found 42189 matches
- Thu Feb 24, 2005 9:12 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: sql query
- Replies: 5
- Views: 1340
- Thu Feb 24, 2005 9:10 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Job Sequence
- Replies: 13
- Views: 3692
- Thu Feb 24, 2005 8:32 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: dscmdexport command
- Replies: 14
- Views: 3223
- 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...
- 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...
- 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...
- 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...
- 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...
- Wed Feb 23, 2005 3:28 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Routine Code
- Replies: 17
- Views: 8251
- 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.
Code: Select all
If Club = 'c' THEN Ans = '2' else Ans ='0'- 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
- 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...
- Wed Feb 23, 2005 7:43 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Clean up Director logs
- Replies: 7
- Views: 2969
- 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...
- 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...