Search found 53125 matches

by ray.wurlod
Sat Apr 02, 2011 4:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Restartable ETL Jobs
Replies: 12
Views: 11537

Neither of those affected any of my Information Server installations. Even one in Tokyo (which has alternate servers in Switzerland and Australia) was able to keep going, even with some staff relocating to other cities farther west in Japan and working remotely. And no doomsaying will affect my beli...
by ray.wurlod
Sat Apr 02, 2011 2:27 pm
Forum: General
Topic: Shops with pure admin role
Replies: 3
Views: 1720

Does only having IIS Admin role but with other non-IIS duties count? That is, functioning as IIS Admin (which is not a full time task) and having no other IIS activities to perform?
by ray.wurlod
Fri Apr 01, 2011 2:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Comparison with Greater than
Replies: 6
Views: 2336

A range lookup would probably work, with the upper end of the range being some absurdly large value.
by ray.wurlod
Fri Apr 01, 2011 2:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Restartable ETL Jobs
Replies: 12
Views: 11537

Avoid timeout errors by controlling the number (actually the workload) of jobs that can be running simultanously, having heed of other workload on the machine. Avoid locking errors by good design. I agree network down or database down look hard but they're easily handled before a job starts (a small...
by ray.wurlod
Fri Apr 01, 2011 1:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to write routines in datastage
Replies: 3
Views: 5407

DSXchange Learning Center has a video on exactly this topic. (Though it does not cover parallel routines.)
by ray.wurlod
Fri Apr 01, 2011 1:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Selective Delete of hash files by name pattern
Replies: 6
Views: 2237

Beware that deleting a pathed dynamic hashed file is trickier than Craig would have it seem. You need to delete the DATA.30, OVER.30 and .Type30 files as well as file file dictionary. If you have created indexes you need to delete them too. And the hashed file must not be in use, so that the T30FILE...
by ray.wurlod
Fri Apr 01, 2011 1:40 pm
Forum: IBM QualityStage
Topic: CASS Stage not validating a few valid address records?
Replies: 11
Views: 5682

You have a 9-digit zip in the failed case, so you should have a value in the Zip4_CASS field.
by ray.wurlod
Fri Apr 01, 2011 1:38 pm
Forum: IBM<sup>®</sup> DataStage TX
Topic: Split a MT940 File
Replies: 2
Views: 9392

Please confirm whether you are using WebSphere Transformation Extender or DataStage and, in either case, the exact version number.
by ray.wurlod
Thu Mar 31, 2011 10:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC License allocation
Replies: 7
Views: 3130

Check your OpenLink driver documentation. There may be a limit on the number of simultaneous connections, or there may be an expired license on the driver (the latter fixed by sending OpenLink more money).
by ray.wurlod
Thu Mar 31, 2011 10:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC License allocation
Replies: 7
Views: 3130

Looks like you're trying to use an OpenLink driver, which does not work with the driver manager for DataDirect drivers shipped with DataStage. Can you use one of the shipped drivers?
by ray.wurlod
Thu Mar 31, 2011 8:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Split a record into multiple records
Replies: 8
Views: 5701

Concatenation in Transformer stage.

Column Export stage.
by ray.wurlod
Thu Mar 31, 2011 7:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel Routine Datatypes
Replies: 3
Views: 1561

From memory the Programmer's Guide shows mapping between C-style and SQL-style data types. In general they're pretty obvious, though the latter form a subset of the former.
by ray.wurlod
Thu Mar 31, 2011 3:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Simple question about copy stage
Replies: 3
Views: 2353

You can achieve any implicit conversion with any stage type that supports input and output links.

Note, however, that Numeric(14,0) does not implicitly convert to int32. Either use int64 on the output or Numeric (9,0) on the input.
by ray.wurlod
Thu Mar 31, 2011 3:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: getting error when compiling the Datastage job
Replies: 12
Views: 14841

You have to install the correct C++ compiler before you install Information Server.
by ray.wurlod
Thu Mar 31, 2011 3:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to Disable Referential Integrity when loading DB2
Replies: 4
Views: 3450

Prevention is better than cure. Design your set of jobs so that it does not violate referential integrity.