Search found 15603 matches
- Wed Feb 15, 2006 3:50 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Prob in Fixed width generation
- Replies: 4
- Views: 1164
- Wed Feb 15, 2006 3:49 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Trim Function in Modify Stage
- Replies: 21
- Views: 12414
- Wed Feb 15, 2006 3:25 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: prgram source check box in Export dialog
- Replies: 12
- Views: 3477
If you export your jobs without clicking on the 1st drop-down (Job Designs) enabled, you won't get any design-time information; it is independant of the the "executable" and "source" export attributes in the Manager for jobs. The settings for routines are a bit different, you only have two choices t...
- Wed Feb 15, 2006 3:20 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Prob in Fixed width generation
- Replies: 4
- Views: 1164
- Wed Feb 15, 2006 1:53 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Remote exec
- Replies: 5
- Views: 1331
Elavenil, what is the issue - the DSExecute() call won't return until the program it calls finishes - so if your external batch script finishes after the job then it must be starting off a background process. Is your intent to have the DataStage job wait until the other background process completes?...
- Tue Feb 14, 2006 12:13 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Problem with FTP: Char columns getting padded with zeros
- Replies: 4
- Views: 972
Try using the debugger and stepping through the values on the output side of the FTP to see if you really have leading zeroes prepended to char fields at that point. Also, it looks like a "0" is put before and after the values - could it be the column separator; perhaps you could try using " as a qu...
- Tue Feb 14, 2006 11:57 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Problem with FTP: Char columns getting padded with zeros
- Replies: 4
- Views: 972
How do you know that the padding is done in the FTP stage? Normally I would never expect a CHAR field to be automatically padded with leading zeroes so my first guess is that this is happening on your output. If you use a FTP stage and either write straight to a non-delimited, fixed width, no termin...
- Tue Feb 14, 2006 11:02 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: staging
- Replies: 10
- Views: 2496
- Tue Feb 14, 2006 11:01 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Multiple values in parameter
- Replies: 4
- Views: 1440
Use all the values in one string and use a character that doesn't appear in the string as a separator. Lets say your paramter string looks like "1;2;3;5;7;11;13;17;19;23". If you want to exclude records where a column contains one of these values you can add an extra ";" separator to the string and ...
- Tue Feb 14, 2006 9:21 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: dsjob error
- Replies: 4
- Views: 776
- Tue Feb 14, 2006 9:19 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Unable to open the operating system file
- Replies: 9
- Views: 2480
1. go into the manager, edit the routine "CheckAlphaNumeric", make a change like adding a single space to the code somewhere so that the "save" button is no longer greyed out. Save the job. If the save doesn't work then you probably have a protected project and need to talk to your admin. If the sav...
- Tue Feb 14, 2006 9:14 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Can't login to Datastage
- Replies: 4
- Views: 1193
- Tue Feb 14, 2006 9:00 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: dsjob error
- Replies: 4
- Views: 776
- Tue Feb 14, 2006 8:59 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Unable to open the operating system file
- Replies: 9
- Views: 2480
It's hard to see how to help you, murali; you need to explain your problem a bit more. Is your project protected? Why can't you compile your routine (because it give an error? Because the "compile" button is greyed out?) Were you able to use the "test" button in the manager to test it or does i was ...
- Tue Feb 14, 2006 8:52 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: string to raw conversion
- Replies: 2
- Views: 1061
Your string contains double quotes that you don't want? You can use the ereplace to remove them from the string. Or perhaps your output sequential file declarations specify a double-quote as the quote character and you are seeing that. The StringToRaw() is a PX function that doesn't exist in the ser...