Search found 53125 matches

by ray.wurlod
Thu May 10, 2012 8:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: New Features in Server Jobs/API ( 8.5 vs 7.51A)
Replies: 7
Views: 2819

Server jobs work fine in version 8.5 and 8.7. You may like to start switching to Connector technology for connections to data sources, and maybe organise your parameters using Parameter Sets.
by ray.wurlod
Thu May 10, 2012 8:14 pm
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: WebView
Replies: 3
Views: 3416

Depending on what you need to do, you might investigate the Web Services Client stage. This encodes requests as SOAP mesasges and decodes responses from SOAP messages, using metadata defined for a web service operation in its WSDL.
by ray.wurlod
Thu May 10, 2012 4:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer with Long constraint stays in running state
Replies: 4
Views: 3790

Use a stage variable to extract the rightmost three characters, so you only need to do that calculation once. Maybe another two stage variables to evaluate equality with 'EOD' and 'SOD' respectively.
by ray.wurlod
Thu May 10, 2012 4:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to lookup using Constraint in Transformer
Replies: 4
Views: 1680

I agree. Your requirement was not well stated, but it appears that a Conditional lookup in the Lookup stage will achieve what you require.
by ray.wurlod
Thu May 10, 2012 4:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Difference between numeric and decimal datatype?
Replies: 5
Views: 2245

For all practical purposes in DataStage, Decimal and Numeric can be regarded as synonyms.
by ray.wurlod
Thu May 10, 2012 4:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Occurs Functionality through CFF stage
Replies: 11
Views: 4502

In this case it was a simple PIC X(3). that was subject to the OCCURS.
by ray.wurlod
Thu May 10, 2012 3:59 pm
Forum: General
Topic: How to obtain Job Sequence Reports
Replies: 1
Views: 887

Why not use a Routine activity as the first and last activity in the sequence? Otherwise create a simple job containing to interrogate the information for the sequence?
by ray.wurlod
Thu May 10, 2012 3:56 pm
Forum:
Topic: Best Practice to maintain/Import Metadata repository
Replies: 3
Views: 1542

IMAM badly needs a command line interface for creating the import area and performing the initial import.
by ray.wurlod
Thu May 10, 2012 3:54 pm
Forum: IBM QualityStage
Topic: QS Rules Upgrade
Replies: 3
Views: 2135

The structure of those rule set files has not changed between versions.
by ray.wurlod
Thu May 10, 2012 2:08 am
Forum: General
Topic: How to find job modified date in 8.5
Replies: 6
Views: 5822

You can also run that query from the Command window in the Administrator. Search DSXchange for query examples involving DS_AUDIT table or UNNEST DS_AUDIT ON MODS text.
by ray.wurlod
Thu May 10, 2012 2:06 am
Forum: General
Topic: uv command
Replies: 1
Views: 1102

And, more specifically, if you don't have its parent directory in your PATH, then the answer is NO. (You will only be able to execute the command from its parent directory, and you never want to do that.)

echo $PATH to see the value of PATH.
by ray.wurlod
Wed May 09, 2012 9:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Occurs Functionality through CFF stage
Replies: 11
Views: 4502

Research what the other possibilities are in the CFF stage, other than "flatten".
by ray.wurlod
Wed May 09, 2012 9:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: decode function
Replies: 13
Views: 6624

Not in a position to test that at the moment. Working on a Business Glossary/Information Analyzer/Metadata Workbench installation.
by ray.wurlod
Wed May 09, 2012 7:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: decode function
Replies: 13
Views: 6624

Code: Select all

If in_Xfm_2.MO_NBR >= 1 And in_Xfm_2.MO_NBR <= 9 Then in_Xfm_2.FYEAR Else If in_Xfm_2.MO_NBR >= 10 And in_Xfm_2.MO_NBR  <= 12 Then in_Xfm_2.FYEAR + 1 Else 0
by ray.wurlod
Wed May 09, 2012 7:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: decode function
Replies: 13
Views: 6624

Since when has 09 been an octal number? :shock:

Why do you believe that DataStage is looking for octal numbers? In particular can you cite a manual reference?

iskapalli's main problem is a misplaced belief that Oracle functions can be used directly in DataStage.