Search found 53125 matches

by ray.wurlod
Sat Jan 28, 2006 3:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: inserting oracle warnings in a field in target
Replies: 7
Views: 1888

LASTERR simply reports the message generated by the database. You will need to direct your requirement to Larry's mob.
by ray.wurlod
Sat Jan 28, 2006 3:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to Append data into a sequential file through routine.
Replies: 4
Views: 1294

Try this design -----> Transformer -----> SeqFile -----> Have the Transformer write a single column the the SeqFile. Derivation is InLink.Col1 : svDelim : InLink.Col2 : svDelim : InLink.Col3 : svEOL : InLink.Col1 : svDelim : InLink.Col2 : svDelim : InLink.Col3 + svDelta : svEOL : InLink.Col1 : svDel...
by ray.wurlod
Sat Jan 28, 2006 3:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Update access to the target database
Replies: 3
Views: 1363

As far as the database is concerned, DataStage is just another client application.

The same rules apply for all connected clients. If you would need UPDATE privilege to perform some task as an interactive user, then you will need it to perform the same tasks as a DataStage user.
by ray.wurlod
Sat Jan 28, 2006 3:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: temporary variable (place holder)
Replies: 2
Views: 944

Use stage variables in a Transformer stage. Because stage variables are executed in the order in which they appear in their grid, when one stage variable is being evaluated, later stage variables in the grid still hold their values from the previous row. svTest (InLink.Column <> svPrevValue And ...
by ray.wurlod
Sat Jan 28, 2006 3:00 pm
Forum: Data Integration
Topic: Factless Facttable
Replies: 4
Views: 10628

A search of the forum would have revealed that a factless fact table records events for which there are no required measures.
by ray.wurlod
Fri Jan 27, 2006 2:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage Essbase Connection
Replies: 2
Views: 3058

Welcome aboard. :D

There's nothing "out of the (DataStage) box" but, if you have an ODBC driver that can access Essbase data, then you can use the ODBC Enterprise stage.

Search the forum in case someone's solved this already.
by ray.wurlod
Fri Jan 27, 2006 2:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Failure Notification
Replies: 6
Views: 1728

Direct all failures to the UtilityWarningToLog routine as well as any other processing. This will propagate warnings "up the chain of control".

Your top-level controller can then detect that a warning has occurred.

Ideally create your jobs so that no other warnings occur.
by ray.wurlod
Fri Jan 27, 2006 2:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to get job statistics if the job design varies?
Replies: 2
Views: 831

If there's one load per link all you have to do is call the routine multiple times with different link names. String sufficient routine activities together in a job sequence so you still have a single callable component. Implemented one of those as recently as last week.
by ray.wurlod
Fri Jan 27, 2006 2:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash File Corruption
Replies: 1
Views: 791

You have almost certainly created a non-hashed, or directory file, either by creating a Type 19 or Type 1 file (unlikely) or by putting something other than DATA.30, OVER.30 and .Type30 in the hashed file directory.

A hashed file directory must only contain these three files.
by ray.wurlod
Fri Jan 27, 2006 1:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with Iconv and Status function
Replies: 10
Views: 2724

Add this to your routine

Code: Select all

If Status() <> 1 Then Call DSTransformError("Conversion problem","RoutineName")
This call automatically displays the argument values.
by ray.wurlod
Fri Jan 27, 2006 1:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How do we pass parameter using parameter file in Windows ?
Replies: 6
Views: 1400

It's not in the parameter tab in a job; it's in the parameters grid of the job activity in the job sequence that controls the job where you can use expressions.
by ray.wurlod
Fri Jan 27, 2006 1:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Host name not valid (81011) error on offline laptop
Replies: 4
Views: 2084

If it's Windows XP you must have an active connection even if it's just to a hub. This may or may not be the case with Server 2K or 2K3.
by ray.wurlod
Thu Jan 26, 2006 11:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job status for running
Replies: 15
Views: 7669

Note that the status of a job obtained from within that job will always be "running". In an after-job subroutine you can get the "interim status" (the status assuming that, apart from the subroutine, the job had finished).
by ray.wurlod
Thu Jan 26, 2006 11:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to Delete a job in a project.
Replies: 2
Views: 1338

That one could be indexing. DSR_WHEREUSED is checking to see whether the job participates in any dependencies, and is likely to use indexes to assist that search. Try reindexing the project at a quiet time.
by ray.wurlod
Thu Jan 26, 2006 11:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problems with variables in generated insert/update
Replies: 4
Views: 1194

Is any of the columns a non-numeric data type, that would require quotes around its value in the SET clause?