Search found 53125 matches
- Mon Jan 29, 2007 4:02 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: One DataStage Server is going to die
- Replies: 18
- Views: 6779
Configuration file is a file, probably in $DSHOME/../Configurations, whose name ends in ".apt" - for example default.apt The current value of the APT_CONFIG_FILE environment variable determines which configuration file is in use. Every parallel job that runs logs a message indicating which configura...
- Mon Jan 29, 2007 3:58 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Exception table
- Replies: 5
- Views: 1047
- Mon Jan 29, 2007 3:45 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: how to Handle Two Different Date Formats
- Replies: 5
- Views: 1253
Easiest, to my mind, would be an If..Then..Else based on length, applying the appropriate date format string in each case. If you have "mm/d/yyyy" and "m/dd/yyyy" as well, this may be a four-way test, and a length test would not be sufficient. Since you did not specify these possibilities, I will no...
- Mon Jan 29, 2007 3:43 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Checking Operator Error
- Replies: 5
- Views: 2026
Your job asks to preserve partitioning. A Sequential File that is writing must collect all partitions into a single stream and therefore can not preserve partitioning. In the stage that precedes (feeds) the Sequential File stage, check the value of the Preserve Partitioning flag. Set it to "Clear". ...
- Mon Jan 29, 2007 3:39 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Number of rows in a data set
- Replies: 23
- Views: 5240
If you are getting "command not found" the problem lies with your PATH environment variable - not SHLIB_PATH, LD_LIBRARY_PATH or anything else. Fix that first. It needs to include $APT_ORCHHOME/bin. Of course, you must have previously set APT_ORCHHOME, or hard code the pathname in PATH. You will als...
- Mon Jan 29, 2007 3:31 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: OLE SERVER CONNECTIVITY
- Replies: 5
- Views: 2550
The OLE server in question is probably dsobjects.dll. Sometimes Windows just loses a handle to an object; this is typically reported as an OLE Automation error. There's not a whole lot you can do about it, because Windows then closes whatever application was affected by the fault. Further, it's rand...
- Mon Jan 29, 2007 3:26 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Merging files
- Replies: 9
- Views: 1874
- Mon Jan 29, 2007 3:24 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Date conversion
- Replies: 8
- Views: 3060
- Mon Jan 29, 2007 3:21 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: cannot able to read the records of variable lenghts
- Replies: 7
- Views: 1481
- Mon Jan 29, 2007 3:20 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Problem in giving Nullable value to numeric in Seq File
- Replies: 2
- Views: 950
Go to the Columns grid. Select the row in the grid for that column. Right click and choose Edit Row from the menu. Make sure that Nullable = Yes. In the properties tree there is a folder called Nullable. From the available properties to add, choose Null Field Value. Supply 99999999999 as the null fi...
- Mon Jan 29, 2007 3:15 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Getting category list in a project
- Replies: 5
- Views: 1488
Do you want just job categories, or routine, table definition and other categories as well? If the latter, simply execute similar commands on the other Repository tables and form the UNION. For example SELECT DISTINCT 'Jobs',CATEGORY FMT '60L' FROM DS_JOBS UNION SELECT DISTINCT 'Routines',CATEGORY F...
- Mon Jan 29, 2007 3:12 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Direct Load Problems in Oracle Enterprise stage
- Replies: 3
- Views: 1572
Search here and at IBM DeveloperWorks - I recall seeing something about bitmaps being left in unusable state but don't have the time to pursue it.
- Mon Jan 29, 2007 3:07 pm
- Forum: General
- Topic: receiving notification when a job fails
- Replies: 7
- Views: 3235
- Mon Jan 29, 2007 3:05 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: FTPing Multiple Files with Parameters
- Replies: 11
- Views: 3299
From "Code Obfuscation 101":
Code: Select all
Equate ReturnCode LITERALLY "ExitStatus"- Mon Jan 29, 2007 3:02 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Automize the process of Excel to csv/txt conversion
- Replies: 3
- Views: 947
Re: Automize the process of Excel to csv/txt conversion
How can we automize the process of Excel to CSV/TXT conversion, prior to ETL/DataStage process. (with no human intervension) I appreciate your help. Thanks You will need human intervention, at least in the design phase. The designer will need to create a script - it may be a small VBA script, it ma...