Search found 53125 matches

by ray.wurlod
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...
by ray.wurlod
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

If you were at the Conference or are an IBM employee, then you have access to the site and will know the URL.

If you had asked this question three months ago I would have been able to find it, but have purged old entries from my email inbox since then.
by ray.wurlod
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...
by ray.wurlod
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". ...
by ray.wurlod
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...
by ray.wurlod
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...
by ray.wurlod
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

Read Method is "Specific File".
You can add more than one "File" property.

This is what I meant by multiple File properties.
by ray.wurlod
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

Look at Appendix A in the Parallel Job Developer's Guide for the data type conversion functions that are available in the Transformer stage. Surely some combination of these will address your question.

You could, as an alternative, use a Modify stage to effect the data type translation.
by ray.wurlod
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

:idea: Rejected rows can be captured on a rejects link and re-parsed using a Column Import stage.
by ray.wurlod
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...
by ray.wurlod
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...
by ray.wurlod
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.
by ray.wurlod
Mon Jan 29, 2007 3:07 pm
Forum: General
Topic: receiving notification when a job fails
Replies: 7
Views: 3235

Change your screen resolution or get your eyes checked. It's OK for me (at 1024 x 768), and I'm (probably) older than thee.

Observation: The OP marked the job type as parallel.
by ray.wurlod
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"
by ray.wurlod
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...