Search found 15603 matches

by ArndW
Wed Aug 22, 2007 7:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: problem inporting PIC +9(02)V9(06) field from Mainframe
Replies: 5
Views: 1251

That is why I asked if the '+' is in the data. Add a DUMMYPLUS1 and DUMMYPLUS2 (or FILLER) column of length 1 right before the PIC 9(2)V9(6) columns.
by ArndW
Wed Aug 22, 2007 7:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to Flatten the CFD?
Replies: 3
Views: 739

No, your two level 05 items are just group names without pictures; that is why I suggested you remove them.
by ArndW
Wed Aug 22, 2007 6:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: last calendar of month.
Replies: 7
Views: 2091

Hello and welcome to DSXchange.

I use the first day of the following month, then subtract a day from that.

DateFromDaysSince(1,StringToDate('2007/12/01','%yyyy/%mm/%dd'))
by ArndW
Wed Aug 22, 2007 6:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can ODBC stage do all, what Oracle EE stage does.
Replies: 13
Views: 5995

Functionality notwithstanding, performance can be dramatically faster with the Enterprise stage, particularly with a partitioned database. I would not use ODBC given a choice.
by ArndW
Wed Aug 22, 2007 5:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Using NULL values in transformer constraints
Replies: 2
Views: 4651

As long as you check for null first and just use OR clauses you can do this in a constraint. As soon as you have an AND then all conditions are evaluated and any normal operation on a NULL field will cause an error.
by ArndW
Wed Aug 22, 2007 5:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: probem in timestamp conersion from DB2 to UDB
Replies: 1
Views: 771

As far as I know, "24:00:00" is an invalid time, the highest legal value is "23:59:59". If it is coming in as a string, you can check and replace it with 00:00:00 or 23:59:59 depending upon which interpretation you have of that value and then do the conversion.
by ArndW
Wed Aug 22, 2007 5:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: problem in look up when it is long string
Replies: 8
Views: 2145

DataStage hashed files have a configurable maximum length; I believe the default value is 768; you can check this value by looking into the uvconfig file or executing the command 'smat -t' from the command line. This would mean that the hashed file keys are truncated to this length, which explains w...
by ArndW
Wed Aug 22, 2007 4:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Partitions and Nodes configuration problem
Replies: 16
Views: 5033

Lokesh - 'auto' DOES do partitioning. What happened when you made the reference links 'entire'?
by ArndW
Wed Aug 22, 2007 4:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Massive upsert with 4 nodes take too much time
Replies: 5
Views: 1529

The first thing I would do is change the intervals, those are very, very small for the size of data you have (at least 2,800 commits!)
Also, have you checked whether this table has triggers or indices or constraints?
by ArndW
Wed Aug 22, 2007 3:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Wait for file on a diff server
Replies: 13
Views: 1944

Sorry, I read your first reply and saw the 'yes' to the NFS mount question. If telnet works, then rsh should work as well. With that command you could check for the existance of the file.
by ArndW
Wed Aug 22, 2007 3:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading an encrypted Buffer from DB2
Replies: 1
Views: 661

Can you get the java into a library routine? If so, then you can create a c++ interlude call and put that into a library and call it directly from the transform stage - this is much more efficient than pushing and popping a shell & executable for each row of data. The record itself can be interp...
by ArndW
Wed Aug 22, 2007 3:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Conditional execution of next job in sequence
Replies: 22
Views: 5767

Yes, 3 separate user variables in that activity (I'm fairly certain that user variables can be used later in the same stage, analogous to what happens in Transform stage). I would write this as a simple routine CheckRowFunction(DummyArg) JobName = 'MyJob' LinkName = 'MyLink' StageName = 'MyS...
by ArndW
Wed Aug 22, 2007 3:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: File name length or table name length limit
Replies: 4
Views: 4125

What limit does Netezza impose on column names? DataStage certainly can handle much longer names.
by ArndW
Wed Aug 22, 2007 3:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with DataStage 7 and Oracle 9i
Replies: 2
Views: 968

The problem at 7.0 could have been a bug that is resolved at 7.5.2; but the workaround you described should still work at 7.5.2. What exactly is the question that you have?
by ArndW
Wed Aug 22, 2007 3:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash File Performance Degrading ??
Replies: 27
Views: 8329

Don't you think that telling us what the error you received on the COUNT command might help? The HFC.exe is (I think) on the installation CD-ROM. But in your case it might just confuse matters. Wait until one load is finished, then do an "ANALYZE.FILE {YourFileName}" and post the results.