Search found 53125 matches

by ray.wurlod
Tue Jun 19, 2012 4:24 pm
Forum: General
Topic: email notifications logic
Replies: 3
Views: 1951

Pick based on what criteria? Looks like a sequence would be the way to go, then a Routine activity invoking a custom SendMail routine. A Notification activity is contraindicated because of the stated need to have a variable body.
by ray.wurlod
Tue Jun 19, 2012 6:10 am
Forum: General
Topic: Capturing SOAP Envelope
Replies: 1
Views: 1127

Capturing SOAP Envelope

Is it possible to capture the actual SOAP envelopes (header and body at least) used by the Web Services Transformer stage using only DataStage facilities (perhaps a property in the stage itself)?
by ray.wurlod
Tue Jun 19, 2012 6:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dataset error
Replies: 3
Views: 5755

Commands are case sensitive in UNIX systems. The orchadmin command must be specified in lower case. Its parent directory must be in your command search list (that is, in the PATH environment variable) or the command must be specified using a fully qualified pathname.
by ray.wurlod
Tue Jun 19, 2012 12:56 am
Forum: Information Analyzer (formerly ProfileStage)
Topic: Cannot choose a data class
Replies: 4
Views: 2114

I think so. I'm on a non-IA 8.5 site at the moment.
by ray.wurlod
Mon Jun 18, 2012 11:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Schema Library Manager
Replies: 2
Views: 1666

The URL or pathname that you're providing the importer can not be found (or maybe you also need to specify a port number as well). Can you get a copy of the XML and import from a local file?
by ray.wurlod
Mon Jun 18, 2012 11:17 pm
Forum: General
Topic: IBM XL C/C++ Enterprise Edition compiler
Replies: 4
Views: 1903

Seems a reasonable guess, but probably worth checking with IBM anyway.
by ray.wurlod
Mon Jun 18, 2012 11:14 pm
Forum: Information Analyzer (formerly ProfileStage)
Topic: Cannot choose a data class
Replies: 4
Views: 2114

A mystery. I presume this is version 8.7. If you create user-defined data classes do they show up?
by ray.wurlod
Mon Jun 18, 2012 5:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Implicit conversion from source type "int64" Warn
Replies: 3
Views: 2568

decimal[10,0] is not big enough to handle all possible values of uint64, the largest possible value of which is 2**64-1, or 18,446,744,073,709,551,615 (rather more than 10 digits, which is what your decimal[10,0] data type implies). DataStage is warning you that not all possible uint64 values will f...
by ray.wurlod
Mon Jun 18, 2012 5:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Implicit conversion from source type "int64" Warn
Replies: 3
Views: 2568

This is not a question from U, it is a question from kollurianu.

The second person personal pronoun in English is spelled "you". We strive for a professional standard of written English on DSXchange.
by ray.wurlod
Mon Jun 18, 2012 5:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How do I access the 'Drop unmatched fields' property in ODBC
Replies: 3
Views: 2813

I don't have DataStage available at the moment so can't readily answer the question you asked in your subject. But may I ask whether RCP was enabled for those two jobs and not for the others? And, if not, were only these two jobs dealing with tables that have additional columns?
by ray.wurlod
Mon Jun 18, 2012 5:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: what is use of surrogate key?when we u r using this?
Replies: 5
Views: 2179

The second person personal pronoun in English is spelled "you". The present tense plural of the verb "to be" is spelled "are". We strive for a professional standard of written English on DSXchange, not least to make life a little easier for those whose first language i...
by ray.wurlod
Mon Jun 18, 2012 5:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DS 8.5 on Windows integration with TFS version control.
Replies: 2
Views: 4175

Karthik.M wrote:Version Control is possible in Datastage using "CVS - Concurrent Versions System" and "Clearcase" only.
That is totally incorrect.

As narsingrp noted, it is possible to integrate with other source code control systems using the Eclipse plug-in provided for that very purpose.
by ray.wurlod
Mon Jun 18, 2012 5:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Retain loop variable value in a transformer?
Replies: 2
Views: 2640

That would be a much more useful reply had you elaborated on how to achieve the "with the loop variable" part. It seems to me that a straightforward approach would be to use stage variables to "remember" the value from the previous record, perhaps using the DCount() function to e...
by ray.wurlod
Mon Jun 18, 2012 5:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: TFM2: Error when inserting partitioner: The number of attach
Replies: 2
Views: 3362

Karthik.M wrote:When RCP is enabled the processing is done sequentially and all partitions are nullified.
This is totally incorrect.
by ray.wurlod
Mon Jun 18, 2012 5:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Load multiple tables from Oracle to DB2
Replies: 4
Views: 3238

If there are no large objects (BLOB or CLOB), and provided that you are using DB2 Timestamp data type where Oracle has TIME, you will be able to do this with one or two jobs quite easily using Runtime Column Propagation. Even if there are large objects it can be achieved with few jobs, but you have ...