Search found 53125 matches

by ray.wurlod
Mon Oct 31, 2011 11:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Time Conversion Problem - Timezone?
Replies: 3
Views: 1168

So the date IS being converted to internal format. In this case that is not what you want. Can you specify TO_CHAR rather than TO_DATE in the SQL statement?
by ray.wurlod
Sun Oct 30, 2011 9:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: NULL value issue
Replies: 1
Views: 902

10000000 (binary)
128 (decimal)
0x80 (hexadecimal)

However you want to represent it. This is described fully in the Parallel Job Developer's Guide - research "out of band null".
by ray.wurlod
Sun Oct 30, 2011 9:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: could not use RCP with checksum stage
Replies: 5
Views: 4148

No we can't. The job may have aborted for a completely unrelated reason. Please post the exact error message(s) from the aborted job's log.
by ray.wurlod
Sun Oct 30, 2011 8:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job performance of huge data volumn
Replies: 7
Views: 1992

You can have multiple scratch disks per node specified in the configuration file. It only makes sense to do that if they're on different file systems.
by ray.wurlod
Sun Oct 30, 2011 8:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Stored Procedure stage cuts the time part from Date paramete
Replies: 5
Views: 2023

Try calling it a Timestamp(6) within DataStage. Unlike every other database known to modern man, a DATE in Oracle is actually a timestamp - that is, it has a time component. Oracle is..... different. You might also experiment with Data Elements, though these in my experience are most useful with ODB...
by ray.wurlod
Sun Oct 30, 2011 5:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Time Conversion Problem - Timezone?
Replies: 3
Views: 1168

Oconv() with MTS will only work on the time component. Yours is converting the entire number as if it were an interval then reporting it as a time of day. But what you're wanting to do is formatting rather than converting, so you should prefer the Fmt() function with a mask. Otherwise you have to br...
by ray.wurlod
Sun Oct 30, 2011 2:42 pm
Forum: General
Topic: Information Server 8.7 is released today
Replies: 4
Views: 2171

Read all about it here.
by ray.wurlod
Sun Oct 30, 2011 2:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abnormal termination of stage Map detected
Replies: 11
Views: 2909

Fault type 11 is a SIGSEGV which usually indicates a memory problem. Has the log for this job become very, very large?
by ray.wurlod
Sun Oct 30, 2011 11:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: problem loading huge data into dataset
Replies: 8
Views: 4403

That's over a hexadeciCoors !
by ray.wurlod
Sun Oct 30, 2011 11:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error while using orchadmin utility
Replies: 9
Views: 7743

PaulVL wrote:A) Please contact your local DataStage Administration team as they are highly skilled individuals and exceedingly good looking too.
You mean the red headed kid?
by ray.wurlod
Sun Oct 30, 2011 11:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle enterprise stage
Replies: 5
Views: 2295

I'm a bit surprised not to see mention of the ORCHESTRATE object in the VALUES clause.
by ray.wurlod
Sun Oct 30, 2011 11:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading Mainframe flat file to populate Oracle table
Replies: 7
Views: 2070

Maybe they have a server-only licensing regime.

(Not everyone has your budget. ;) )
by ray.wurlod
Sun Oct 30, 2011 11:40 am
Forum: General
Topic: Who's going to 2011 IOD in Vegas?
Replies: 9
Views: 1610

Paul seems to have managed the sleep deprivation better than I did. Maybe my schedule was more hectic than his. Right now I'm stranded in LA because of the issues with Qantas. Should get home Thursday all being well. So "working from home" this week is just slightly more remote than usual!
by ray.wurlod
Sun Oct 30, 2011 12:04 am
Forum: General
Topic: call select in nested condition
Replies: 7
Views: 1627

You need to wrap it in the appropriate command line interface for whichever database you are using (for example db2, sqlplus, bteq) providing relevant credentials.

That is why I would prefer a server job and its user status area.
by ray.wurlod
Sat Oct 29, 2011 5:32 am
Forum: General
Topic: call select in nested condition
Replies: 7
Views: 1627

No. You may be able to do it in an Execute Command activity (use its triggers rather than Nested Condition activity) but you would need to wrap the CALL correctly; you can not call from the operating system command line. Possibly a better alternative is a server job that executes the SELECT statemen...