Search found 15603 matches

by ArndW
Tue Jun 10, 2008 10:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Upsert errors
Replies: 6
Views: 1324

Can you make a copy of the job and table and make the column non-nullable, then put a reject link to the upsert and see if you get some more information explaining this behaviour?
by ArndW
Tue Jun 10, 2008 10:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Numeric data from ODBC not properly written
Replies: 5
Views: 1010

In number cannot contain blanks. As you are writing a number as a number it fills in the zeroes. When you write it as a VarChar() DataStage performs an implicit type conversion and, by default, removes leading zeroes.
by ArndW
Tue Jun 10, 2008 10:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creating DSN in Unix
Replies: 3
Views: 1737

If you are referring to an ODBC connection DSN then you will need to install a 3rd party ODBC package on UNIX in order to do this. If not, could you explain what you are attempting to do?
by ArndW
Tue Jun 10, 2008 8:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Numeric data from ODBC not properly written
Replies: 5
Views: 1010

If you add a new column declared as VarChar(10) and map the numeric into it, does it look any different?
by ArndW
Tue Jun 10, 2008 8:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Disaster Recovery
Replies: 2
Views: 1033

Disaster recovery is always driven the system requirements. I need to take a different approach in designing a data warehouse to be recoverable within an hour of failure than on a system which can be down for several days at a time. The definition is also a loose one. For some it means "My data cent...
by ArndW
Tue Jun 10, 2008 8:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Numeric data from ODBC not properly written
Replies: 5
Views: 1010

What is the column declared as in your sequential stage?
by ArndW
Tue Jun 10, 2008 6:02 am
Forum: General
Topic: Unix command in datastage using External filter stage
Replies: 3
Views: 4002

Sure, you can do that. Change the command to "cut" and add the arguments "-d ','-f 2"
by ArndW
Tue Jun 10, 2008 5:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: StringToDate
Replies: 5
Views: 1405

The syntax is well-document in the DataStage Parallel Job Developer Guide and is StringToTimeStamp({column},{format}). In your case the format would be '%yyyy-%mm-%dd%hh:%nn:%ss'
by ArndW
Tue Jun 10, 2008 4:21 am
Forum: General
Topic: Unix command in datastage using External filter stage
Replies: 3
Views: 4002

I am not sure what is happening in your case, I just wrote a simple test (row generator -> external command -> peek) and put in your cut command and it worked like a charm.
by ArndW
Tue Jun 10, 2008 4:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage courses
Replies: 2
Views: 1862

There are no freely available electronic versions of those courses available. All that comes for free is the tutorial
by ArndW
Mon Jun 09, 2008 9:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Creating a Fixed Length File
Replies: 4
Views: 1195

Have you looked with a binary editor? Or try setting $APT_STRING_PADCHAR to a space.
by ArndW
Mon Jun 09, 2008 9:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Logic
Replies: 2
Views: 752

What is the rule behind the result - use just values values where column A is not empty?
by ArndW
Mon Jun 09, 2008 7:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Aborting the Job With Message
Replies: 8
Views: 1833

There is no simple, builtin facility in PX jobs to generate a message in the log file. Do you really need to do this? I might output this message to a PEEK() stage in the reject link and use that log message to diagnose the error in this case.
by ArndW
Mon Jun 09, 2008 6:58 am
Forum: General
Topic: Arnd Hits 10K
Replies: 13
Views: 7403

I can't wait to find out what I can get with those coveted frequent-poster-points 8) I suppose the 1st class trip around the world still needs a few more points, but what about the set of Tupperware containers with a free mincer-slicer-dicer attachment?
by ArndW
Mon Jun 09, 2008 6:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Function in datastage to find date after 6 months
Replies: 10
Views: 17363

A fixable invalid date returns a status() of 2 but a valid date, which is why I skipped it in my case statement.