Search found 53125 matches

by ray.wurlod
Thu May 10, 2007 4:19 pm
Forum: General
Topic: Sequence Aborting
Replies: 2
Views: 1290

You can handle them however you like. Job sequences have one form of automatic handling built in, but the Exception Handler merely initiates a separate stream of processing - you still have to decide what to do. Doubtless there are some business requirements that will guide you. Who needs to be told...
by ray.wurlod
Thu May 10, 2007 4:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error while importing
Replies: 1
Views: 929

You need to specify that the file has fixed width format.
by ray.wurlod
Thu May 10, 2007 4:15 pm
Forum: IBM<sup>®</sup> DataStage TX
Topic: DataStage TX
Replies: 3
Views: 2514

You should be able to get them (for the asking) from your vendor. For anyone else to provide them would probably violate their licence agreement.
by ray.wurlod
Thu May 10, 2007 4:15 pm
Forum: IBM<sup>®</sup> DataStage TX
Topic: Built in routine argument syntax
Replies: 2
Views: 2271

Are you saying that you want to do this from DataStage TX (transformation extender)?
by ray.wurlod
Thu May 10, 2007 4:13 pm
Forum: IBM QualityStage
Topic: Error in QualityStage Job
Replies: 10
Views: 3524

As far as I am aware there is no-one in my part of the world yet using QualityStage version 8.x, at least not in anger. Some POCs (proofs of concept) are about to happen, however. Could be interesting.
by ray.wurlod
Thu May 10, 2007 4:11 pm
Forum: Data Integration
Topic: DataStage versus SQL Server Information Services
Replies: 11
Views: 19415

Surely you should be asking Microsoft, particularly if the answer you require is "yes".
by ray.wurlod
Thu May 10, 2007 12:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Get Job Category
Replies: 8
Views: 2212

:!:
Note: This function (Trans()) is available in job sequence expression derivations, not in parallel job expressions. The OP specified job sequence.

The function is documented in the DataStage BASIC manual. It does the same job as UtilityHashLookup() but far more efficiently.
by ray.wurlod
Thu May 10, 2007 12:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Importing Table Defintions from a remote DB2 Server
Replies: 5
Views: 1365

The import dialogs ask for server name and other authentication information. Just do them one at a time, correctly pointing to the correct server. You may have additional issues if the servers are, for example, running different versions, but you made no mention that this is the case, so I won't bot...
by ray.wurlod
Thu May 10, 2007 12:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: rollback
Replies: 11
Views: 3106

Two jobs. The first one checks for errors and loads the result into a staging area (a text file would do). The second loads from there into the target table, but is only executed if the first succeeds (reports no warnings or errors). That control you can institute using a job sequence containing two...
by ray.wurlod
Thu May 10, 2007 12:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Executing everything in one transaction
Replies: 6
Views: 2214

Does not the ODBC stage also support Transaction Grouping?
by ray.wurlod
Wed May 09, 2007 8:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Pivot stage question
Replies: 13
Views: 3519

:cry: Bottleneck. No parallelism. Need to call server routine from parallel job - not impossible, but a bottleneck and a performance inhibitor.
by ray.wurlod
Wed May 09, 2007 8:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Error
Replies: 3
Views: 1626

Re: Job Error

fmartinsferreira wrote:We have a job that worked and now doesn't work anymore.

What has changed? Something has.
by ray.wurlod
Wed May 09, 2007 8:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Modify stage error
Replies: 20
Views: 10710

What is your default date format string in DataStage?
by ray.wurlod
Wed May 09, 2007 8:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Adavantages of using db2 query or data stage??????
Replies: 8
Views: 3692

Anything that can leverage indexes do in the database. This can include restrictions, joins, some groupings and sorting (if there is a B-tree index on the column being sorted).
by ray.wurlod
Wed May 09, 2007 7:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Get Job Category
Replies: 8
Views: 2212

Code: Select all

Trans("DS_JOBS", DSJobName, 3, "X")

Here DSJobName is a macro.