Search found 53125 matches

by ray.wurlod
Fri Mar 13, 2015 3:34 pm
Forum: General
Topic: Information Governance Catalog Authorized Users
Replies: 1
Views: 1060

Maybe some esoteric requirement for the mainframe environment only?
by ray.wurlod
Fri Mar 13, 2015 3:28 pm
Forum: IBM<sup>®</sup> DataStage TX
Topic: Websphere FTP adapter for SFTP using launcher timed event
Replies: 2
Views: 11420

Re: Websphere FTP adapter for SFTP using launcher timed even

Hi, I am getting issue with Websphere FTP adapter for SFTP using launcher with timed event, map was getting failed with "source not available" using with below command. -TV IBM.j2ca.mtr -wtx:schemadir "/export/home/wtxapp/CommonSchemas" -as:userName mercprod -as:password p@ssw0r...
by ray.wurlod
Thu Mar 12, 2015 4:20 pm
Forum: General
Topic: Disable NLS to improve performance
Replies: 7
Views: 3876

No, IBM posts that installing NLS (globalization) may result in slightly degraded performance.

This is true irrespective of the setting of NLSMODE in the uvconfig file.
by ray.wurlod
Thu Mar 12, 2015 4:16 pm
Forum: General
Topic: @RECORD Array to Column
Replies: 14
Views: 5486

CONVERT is not available as an SQL function, but you can include it in an EVAL expression. RECORD is a reserved word in DataStage/SQL, so I've replaced it with ENTIRE_RECORD. I'd also process the other potential dynamic array delimiter characters. Try SELECT EVAL "CONVERT(@FM:@VM:@SM, '~}|', @R...
by ray.wurlod
Thu Mar 12, 2015 3:56 pm
Forum: General
Topic: Parallel job compilation issues
Replies: 2
Views: 1373

Try a Force Compile.
by ray.wurlod
Wed Mar 11, 2015 2:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datasatge job performance with version 9.1 and Oracle 12C
Replies: 13
Views: 6725

Did you think of running the job on three nodes, to match the number of nodes in the Oracle RAC?
by ray.wurlod
Wed Mar 11, 2015 2:47 pm
Forum: General
Topic: Job sequencer problem
Replies: 21
Views: 4964

I guess I misled you with @DAY + 1. Ignore that.
Use Oconv(@DATE + 1, "DD") = 1
by ray.wurlod
Wed Mar 11, 2015 2:47 pm
Forum: General
Topic: Job sequencer problem
Replies: 21
Views: 4964

... which is what @DAY is already doing for you!
by ray.wurlod
Tue Mar 10, 2015 5:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: EXECUTE TWO DML IN ONE TRANSACTION/UNIQUE COMMIT - ORACLE
Replies: 17
Views: 7448

When you have multiple input links to a Connector stage, it behoves you to check the stage properties as well as the link properties.

In the graphical navigation panel of the Connector stage, click on the stage (rather than on any of the links) to view the stage properties.
by ray.wurlod
Tue Mar 10, 2015 3:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: LeftOuter Join Vs Lookup Stage with Continue Option
Replies: 1
Views: 629

Check which inputs are Left and Right in your Join stage.

The stream that is Left should be the stream that is the stream input for the Lookup stage.

Keep in mind also the partitioning and sorting requirements for the Join stage, and the partitioning requirements for the Lookup stage.
by ray.wurlod
Tue Mar 10, 2015 2:47 pm
Forum: General
Topic: Job sequencer problem
Replies: 21
Views: 4964

Why can't you use @DAY? This is the day portion (as a number) of the current date. It's a system variable.

You might make use of (@DAY + 1) = 1 to detect the last day of the current month.
by ray.wurlod
Mon Mar 09, 2015 3:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datasatge job performance with version 9.1 and Oracle 12C
Replies: 13
Views: 6725

chulett wrote:Database. Let's start with
Yoda?
:lol:
by ray.wurlod
Sun Mar 08, 2015 11:09 pm
Forum:
Topic: Sparx Enterprise Architect
Replies: 0
Views: 2220

Sparx Enterprise Architect

Has anyone any experience importing data models (logical, physical or both) from Sparx Enterprise Architect into Information Server repository?

If yes, what technique was employed to bring the data model(s) in?

Ideally I'd prefer not to have to use InfoSphere/Relational Data Architect.
by ray.wurlod
Sun Mar 08, 2015 3:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: RCP enabled, job fail when there are no fields in the design
Replies: 17
Views: 11057

While you must physically read all columns you can, if not using RCP, make use of the Drop on Import property for columns you don't really want to read into the job. Or use a Copy stage to transfer only the columns of interest.
by ray.wurlod
Fri Mar 06, 2015 2:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: RCP enabled, job fail when there are no fields in the design
Replies: 17
Views: 11057

RCP isn't for everything. As soon as you need to name a column in an expression, you have to name that column. There's no way around that fact, unless you can specify generic field names to which you can map your data. But those names need to appear in the job - you can't "name" a column i...