Search found 42189 matches

by chulett
Mon Jun 11, 2007 6:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: About ODBC update action............
Replies: 17
Views: 5043

The names are a big clue. Select one and then look at the generated SQL. Select the other and check again. The answer should become pretty clear.

In my opinion, you improve the performance of any given job by not using either one of them. Use discrete insert and update links.
by chulett
Mon Jun 11, 2007 6:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Rows/Sec
Replies: 13
Views: 4161

1) We really can't say. Try it and see.

2) Use hashed files for your lookups. That's what Server is all about, the proper leveraging of hashed files.
by chulett
Mon Jun 11, 2007 6:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Incompatibility between DataStage and IBM DB2 64 bit
Replies: 11
Views: 2896

If you still aren't clear on this by now from the various threads on the topic here, I'd suggest you call your official Support provider. Have them see if they can explain it to you and help you set it up.
by chulett
Mon Jun 11, 2007 6:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: What is the difference between DataStage 7.5.2 and 7.5.0.1
Replies: 8
Views: 1705

Still curious why in the world you would upgrade your development environment to a version you have no intention of upgrading production to? :?
by chulett
Mon Jun 11, 2007 6:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: looking up in a Database at runtime ??
Replies: 0
Views: 607

You are looking for a sparse lookup. Or perhaps the Join stage as an alternative.
by chulett
Mon Jun 11, 2007 6:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error -ODBC license file (IVVM.LIC or DDVM.LIC) not found
Replies: 13
Views: 4629

Which is fine and right where it belongs. Are the permissions correct such that your user can read them?
by chulett
Sun Jun 10, 2007 8:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Delete
Replies: 17
Views: 4636

As I said, in this case going from A/T sizes of 1000/1000 to 100/200 won't change a dang thing if all you are sending to the stage are nine records. Your DBA still won't see any commits being done. Best you can do is set T Size to 1 and then commit on every key change. That would mean, based on the ...
by chulett
Sun Jun 10, 2007 7:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Delete
Replies: 17
Views: 4636

What is your 'set of keys' - one record? If so, then futzing with the Array Size won't help at all if all DataStage see is 9 records. About all you could control from a Transaction Size standpoint would be if each set of records from any given 'key set' were committed per key change. That would take...
by chulett
Sat Jun 09, 2007 11:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to add one year to a given date
Replies: 13
Views: 3302

Um... Hello? McFly! What's wrong with the help you've gotten so far? If we're way off the mark, say so. And if so, you could start off by explaining why you "need" to get 2008-06-08 when you add "1 year" to 2007-06-09. I think most people would assume the date should be 2008-06-09. Explain the rule ...
by chulett
Sat Jun 09, 2007 9:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Configure DataStage windows version for Oracle
Replies: 3
Views: 1794

In UNIX all you need to edit is the dsenv file. The others - .odbc.ini and uvodbc.config - are for (as their name implies) ODBC and not OCI. Other mechanisms control this on Windows. Have you installed the Oracle client on the same box as the DataStage server? Can you connect to a database with sql*...
by chulett
Sat Jun 09, 2007 6:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reporting Discarded records in a flat file
Replies: 11
Views: 3184

Meagrees. :lol:
by chulett
Sat Jun 09, 2007 6:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to add one year to a given date
Replies: 13
Views: 3302

Ah yes... the Patent Pending Ray Wurlod Date Routines. Excellent stuff. :wink:
by chulett
Sat Jun 09, 2007 6:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reporting Discarded records in a flat file
Replies: 11
Views: 3184

The record is discarded in the read stage, so the transform stage would never see it. Only if you tell it to discard them. That's why I prefaced my advice with "Let them come into the job". That referred back to the use of the Contains Terminators column option to bring them in as data rather than ...
by chulett
Sat Jun 09, 2007 3:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to get DISTINCT (SAL)
Replies: 5
Views: 1077

Regardless of forum, I look at Job Type to respond. Hence the hashed file answer as well as the one for the question as asked.
by chulett
Sat Jun 09, 2007 12:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to get DISTINCT (SAL)
Replies: 5
Views: 1077

In a Server job? Sort your data by SAL and then use your stage variables to do 'group change detection'. In other words, take the first occurance each time a SAL changes value. You'd need one to check current to previous and a second to hold the previous value - in that order. Or... just write them ...