Search found 53125 matches

by ray.wurlod
Wed Dec 26, 2012 9:13 pm
Forum: General
Topic: DataStage And Quality Stage Operations Viewer
Replies: 3
Views: 2306

In version 9.1 or maybe the following release Director functionality (submit/stop/reset) are available in the Operations Console. Though you still need an appropriate role to use them.
by ray.wurlod
Wed Dec 26, 2012 4:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How can I apply this logic?
Replies: 11
Views: 3085

... only if the fields you're comparing in the stage variables have the same value on the same partition. Hence the need for correct partitioning.
by ray.wurlod
Wed Dec 26, 2012 4:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Metadata import from Oracle 11g to Datastage
Replies: 9
Views: 4013

Probably because Decimal precedes Numeric in an alphabetical list of data types.
by ray.wurlod
Wed Dec 26, 2012 4:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading from fixed length file
Replies: 4
Views: 1989

Read all the input fields as Char data type. Replace the Copy stage with a Modify stage and apply string_trim() function to each field that you need trimmed.
by ray.wurlod
Wed Dec 26, 2012 3:57 pm
Forum: General
Topic: WAS component uninstallation
Replies: 2
Views: 1528

Since you're on Windows, the installer may have gotten far enough along to publish uninstall information, in which case you can use Add/Remove programs from Control Panel.
by ray.wurlod
Tue Dec 25, 2012 2:56 pm
Forum: General
Topic: Records Audit
Replies: 3
Views: 1028

Welcome aboard. Visit Kim Duke's website and download ETLstats, which can collect every link row count in your jobs and load them into, for example, a database from which you can report. It does quite a few other things as well, and it's free. "Success" is sometimes an elusive term; for ex...
by ray.wurlod
Mon Dec 24, 2012 9:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Otherwise/Log dosent catch reject
Replies: 5
Views: 1692

You have four outputs and a reject link. None of these is an Otherwise/Log. Create another output link and, in its constraint, do not create an expression but merely check the Otherwise/Log check box. Make sure that this output link executes last.
by ray.wurlod
Mon Dec 24, 2012 2:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Otherwise/Log dosent catch reject
Replies: 5
Views: 1692

You don't have an Otherwise/Log output, which you will need.

Read my earlier post again.
by ray.wurlod
Mon Dec 24, 2012 2:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: NOT IN in datastage
Replies: 16
Views: 6541

Index() needs three arguments - if it's any consolation, James missed this also. The third argument is the occurrence number you're searching for - this is almost always 1. But the function does, for example, allow you to look for the nth occurrence of the search substring.
by ray.wurlod
Mon Dec 24, 2012 2:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Otherwise/Log dosent catch reject
Replies: 5
Views: 1692

Otherwise/Log output link catches any row that has not already been processed. You need to make sure that the Otherwise/Log output link is the last one executed (do this using the Link Execution Order tool). Reject link only captures input rows that cause an exception, such as an attempt to divide b...
by ray.wurlod
Mon Dec 24, 2012 2:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can't read Variable Block Mainframe file
Replies: 7
Views: 4370

If there is a length prefix, then it will be declared in the COBOL FD and, yes, if it exists DataStage can read it. However you may have to design in the "understanding" part, perhaps by specifying {prefix} in the record schema.
by ray.wurlod
Mon Dec 24, 2012 2:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Metadata import from Oracle 11g to Datastage
Replies: 9
Views: 4013

ANSI standard SQL does not have a data type called NUMBER. Indeed, as far as I am aware, nor does any database apart from Oracle. Oracle is... different. In DataStage, the data types DECIMAL and NUMERIC are considered to be the same. There are only a couple of databases in which the nuances make the...
by ray.wurlod
Mon Dec 24, 2012 1:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Extracting the data after zero
Replies: 4
Views: 2001

Arnd's approach is totally valid.

This is a server job, so data type conversion will be automatic.

Another solution is DIGITS(InLink.TheString) + 0 (performing any arithmetic removes leading zeroes).
by ray.wurlod
Mon Dec 24, 2012 1:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Call SP
Replies: 13
Views: 4104

If you're wanting to do all this in the database, you don't need to involve DataStage at all.

If you want to do the ETL using DataStage, prefer Connectors to using stored procedures.
by ray.wurlod
Mon Dec 24, 2012 1:51 pm
Forum: General
Topic: cannot compile
Replies: 12
Views: 4956

LDAP is merely a protocol for invoking something else, such as Tivoli or Active Directory. It's in those other environments where one sets up all the user IDs, even "service accounts" as they're usually called. On the Global Security page of the Integrated Console for WAS, what is the &quo...