Search found 53125 matches

by ray.wurlod
Wed Apr 11, 2007 3:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Do stages OCI (Oracle 9) need to be converted for Oracle 10g
Replies: 5
Views: 1338

Stage types are independently versioned. That means that the OCI9 stage you use in version 7.1 of DataStage is the same OCI stage that you use in version 7.5 of DataStage. Open the stage type in the Stage Types branch of the Repository and discover that the OCI stage is at version 1.1.
by ray.wurlod
Wed Apr 11, 2007 3:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Aftrer Job Subroutine
Replies: 1
Views: 837

Probably not. When a server job aborts it halts at that point. You can make sure that the file is not moved either by checking the "only execute on successful completion" check box where you identify the after-job subroutine in job properties, or by testing for the interim status of the job within t...
by ray.wurlod
Wed Apr 11, 2007 3:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ETL Basics
Replies: 2
Views: 987

Welcome aboard. :D You can obtain training from the vendor (assuming that you are in India go first to this site ) or from some third party providers. DSXchange is a technical forum and user community. It is not (presently, at least) in the business of providing beginner-level training. We are perfe...
by ray.wurlod
Wed Apr 11, 2007 3:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Return statement Usage
Replies: 8
Views: 2811

You're in a transformation function. That is your Routine type. I can tell because you are setting a value for Ans. In a transformation function you must use the Return() function (with a value), not the Return statement (which is used in internal subroutines in before/after subroutines). You might ...
by ray.wurlod
Wed Apr 11, 2007 2:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash file
Replies: 5
Views: 3140

There's no location of a hash file because there's no such thing.

It's a HASHED file.
by ray.wurlod
Wed Apr 11, 2007 2:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Removing newline and tab characters in a string
Replies: 1
Views: 2314

Convert them to "".

Code: Select all

Convert(Char(9):Char(10),"",InLink.TheString)

More efficient would be to initialize a stage variable to Char(9):Char(10) and use the stage variable name as the first argument to Convert().
by ray.wurlod
Wed Apr 11, 2007 2:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Schema/layout file generation
Replies: 1
Views: 831

Open the table definition in your Repository. Choose the Layout tab. Choose the Parallel option. Right click in the background and choose Save As...
by ray.wurlod
Wed Apr 11, 2007 2:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to pass coloumn value as a target file name
Replies: 2
Views: 813

Three separate output links from a Transformer, Filter or Switch stage.
by ray.wurlod
Wed Apr 11, 2007 2:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading parameter file
Replies: 6
Views: 1855

:? I do not have DSSetParamFile available in my Repository. Can you please advise whether this is an user-defined subroutine? If it ships with DataStage, can you please advise in which category it is to be found?

Parallel jobs do support before/after subroutines.
by ray.wurlod
Wed Apr 11, 2007 2:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Data format conversion issue
Replies: 3
Views: 1290

These are well explained in Appendix A of Parallel Job Developer's Guide
by ray.wurlod
Wed Apr 11, 2007 2:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Records going in air
Replies: 11
Views: 3483

For a few cents per day you can have premium membership, and help to pay for the bandwidth this site requires.
by ray.wurlod
Wed Apr 11, 2007 2:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage Parallel Jobs
Replies: 1
Views: 975

Welcome aboard.

There are several solutions, which a search will reveal.
by ray.wurlod
Wed Apr 11, 2007 2:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataSatge v 7.5.2 vs DataStage v 7.0
Replies: 1
Views: 1364

Lots. They can be found in the readme that ships with version 7.5.2. The biggies are the six additional activities in job sequences, an SQL builder in certain database stage types, a Stored Procedure stage, an HTML report available from Designer, a file/directory common dialog with Windows 2000 look...
by ray.wurlod
Wed Apr 11, 2007 2:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reg. log files
Replies: 3
Views: 1122

If you are talking about DataStage job logs, they are not stored in files at all. They are stored in database tables in the Repository for the project. Like with any database product, the structure is irrelevant to you. You can access its contents with DataStage/SQL, with the Director client, with t...
by ray.wurlod
Wed Apr 11, 2007 2:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash file
Replies: 5
Views: 3140

Welcome aboard.

A hash file is a tool for shaping a block of hash. It does not store anything.

You may be enquiring about a hashed file.

Its pathname is wherever you created it.