Search found 3045 matches

by vmcburney
Tue Jan 17, 2006 4:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how do i increment
Replies: 4
Views: 1701

If you try and set it in a transformer or in a parallel job then you will have some small overhead for every row of data you process. For example if you read it from a file in a lookup stage and assign it to a column of data then you have to pass every row of data through that lookup stage. The most...
by vmcburney
Mon Jan 16, 2006 11:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: teradata table lookup
Replies: 6
Views: 2052

If you are using an early 7.x release your key lookup column and your stream columns need to have exactly the same name before you can select them for a lookup key field. If you are using 7.5.1 then a normal lookup stage will let you drag and drop the stream field to the lookup key field. With 200 m...
by vmcburney
Mon Jan 16, 2006 9:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 API vs DB2 UDB enterprise
Replies: 5
Views: 3041

The DB2 Enterprise stage is the way to go if you can work out how to configure those remote connections. Much faster in reading and writing. If you have effective DB2 table partitioning you can get some huge performance improvements over the API stage.
by vmcburney
Mon Jan 16, 2006 8:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup is not perform.
Replies: 2
Views: 1132

Do a view data on the source and lookup tables and copy and paste key fields to notepad, look for extra padding or funny characters as these can prevent lookups from working.
by vmcburney
Mon Jan 16, 2006 8:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SIGILL error - Sparse Lookup on Oracle Sequence
Replies: 6
Views: 3308

There is no harm switching job monitoring at the project level since you can always switch it back. If you lookup SIGILL or SIGSEGV you will see there are quite a few causes of this error and you will may have to use trial and error to see which one is affecting your jobs.
by vmcburney
Mon Jan 16, 2006 12:49 am
Forum: General
Topic: Sequence - Best Practice
Replies: 3
Views: 2776

There is certainly a support training requirement, if a sequence job is at the status aborted/restartable then simply starting it will run from the failed checkpoint while resetting it will clear checkpoints. Support staff need to know when to run and when to reset. Simply starting a top level seque...
by vmcburney
Sun Jan 15, 2006 5:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Joining 2 Datasets using between logic??
Replies: 8
Views: 1958

Call me crazy but isn't it easier and a whole lost faster to take BILL_DATE and derive the fields FIN_YEAR and FIN_MONTH instead of looking them up? It should be a relatively easy formula. If that is not viable then why not map every FIN_YEAR and FIN_MONTH combination to a calendar year and calendar...
by vmcburney
Sun Jan 15, 2006 4:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SQLSTATE=HY000, DBMS.CODE=-302
Replies: 4
Views: 2497

It might be error SQL0301 which is input host variable or argument not valid. This would indicate one of the two join key fields is not valid. Can you do a "View Data" on the source, this should run the query without the filter, if the view data works then the error is in one of your two join fields...
by vmcburney
Sat Jan 14, 2006 6:32 pm
Forum: General
Topic: Sequence - Best Practice
Replies: 3
Views: 2776

If you are using the latest version (7.5.1) you can use the automated checkpoint restart built into sequence jobs. Go to job properties and look at the check boxes on the first properties screen. When a job aborts you will see it has the status of aborted/restartable, this means you can restart it a...
by vmcburney
Wed Jan 11, 2006 11:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need workaround - No error codes being returned from DB2
Replies: 12
Views: 5391

Bulk loads errors can be harder to find, you need to parse through the bulk load statistics file and find specific error codes. There is no differentiation in the bulk load log files between information messages and error messages, they look the same and have the same format. No bulk load errors tur...
by vmcburney
Tue Jan 10, 2006 7:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: concatenate selected cols into one not hardcoding cols
Replies: 8
Views: 1492

From memory if you define the key columns on the input and output links of the row merger stage it wont concatenate them. It treats them as pass through columns and concatenates those columns that are not on the output tab.
by vmcburney
Tue Jan 10, 2006 7:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Concatenation of Rows
Replies: 15
Views: 10198

Roy! Could you wave your magic wand at Jim and make him a FAQ Genie? His vertical pivot answer beats the FAQ out of the previous responses for completeness.
by vmcburney
Tue Jan 10, 2006 6:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Random number generation in buildop
Replies: 6
Views: 1521

You can assign numbers in the transformer stage using the FAQ on How do I set up a counter in a parallel transformer? You just need to sort and partition on that number field and only increment the parallel counter when the key number field changes. You can do this with a lastkey stage variable for ...
by vmcburney
Tue Jan 10, 2006 6:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to change DS7 key, once it has expired !!!
Replies: 10
Views: 3192

Can you set your server machine date back a few days, update the license key and then move the date forward again?
by vmcburney
Tue Jan 10, 2006 6:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Hi All
Replies: 6
Views: 2593

As the funnellman says the problem is in the lookup. Your stream may define a column as not null and your lookup may define a reference fields as not null but if you have a lookup stage with failed lookup set to Continue you can end up with null values in the output field. You need to make the outpu...