Search found 53125 matches

by ray.wurlod
Wed Aug 24, 2011 4:05 pm
Forum: General
Topic: Common Warehouse Metamodel
Replies: 4
Views: 2070

Common Warehouse Metamodel

The question arose in conversation yesterday about whether DataStage could be said to be "CWM compliant". Any thoughts?
This article suggests that there's a good argument for "Yes", at least in the case of DB2 Data Warehouse Center.
by ray.wurlod
Wed Aug 24, 2011 3:56 pm
Forum: General
Topic: Modified User Role for Importing/Exporting?
Replies: 3
Views: 1896

You might take a look at protected projects; there's a role that effectively limits operations there to import. No edits at all are permitted in a protected project.
by ray.wurlod
Wed Aug 24, 2011 3:52 pm
Forum: General
Topic: Starting multiple jobs using StartLoop EndLoop in a Sequence
Replies: 12
Views: 3425

Maybe the logic should handle $RETURN_VALUE -eq 0 separately. This means that the job start request was successful and that the job is still running. You have no idea when it will end.
by ray.wurlod
Wed Aug 24, 2011 3:49 pm
Forum: General
Topic: find category name
Replies: 9
Views: 2965

The excluded records are simply category placeholders - they record the existence and relationships of category folders. They contain no other information.
by ray.wurlod
Wed Aug 24, 2011 3:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Search word
Replies: 3
Views: 1979

QualityStage.
by ray.wurlod
Wed Aug 24, 2011 3:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Stage Type Object 'ORAOCI8' not found
Replies: 3
Views: 2906

Does ORAOCI8 exist in the Stage Types branch of the Repository?

Does it exist in the DS_STAGETYPES table?
by ray.wurlod
Wed Aug 24, 2011 3:54 am
Forum: General
Topic: find category name
Replies: 9
Views: 2965

Nothing to worry about. In fact, there are no ROOT records in DS_JOBS.
by ray.wurlod
Wed Aug 24, 2011 3:52 am
Forum:
Topic: Multiple XMETA databases for a single DS instance
Replies: 5
Views: 2328

Short answer, no. Longer answer, both the XMETA database and the WebSphere Application Server have high availability (HA) failover capability in version 8.5 and later. For more money, of course.
by ray.wurlod
Tue Aug 23, 2011 3:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Using job parameter value in Oracle connector stage
Replies: 1
Views: 3501

1. Yes.
2. No. But you can provide it as part of the custom SELECT statement.

I have done this in the past, generating the SELECT statement via a query against the Oracle system tables. This was done in an upstream server job and the SQL query saved in that job's user status area.
by ray.wurlod
Tue Aug 23, 2011 3:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Specified Driver not loaded
Replies: 4
Views: 1476

It means that you can identify the server but cannot connect to it. Read your database or ODBC driver documentation to decode the error code.
by ray.wurlod
Tue Aug 23, 2011 3:05 pm
Forum: General
Topic: DataStage 8.5 Architecture
Replies: 3
Views: 2856

Welcome aboard. What do you mean by "performance"? The same parallel processing architecture is used in version 8 as was used in version 7.
by ray.wurlod
Tue Aug 23, 2011 3:04 pm
Forum: General
Topic: find category name
Replies: 9
Views: 2965

Code: Select all

SELECT NAME, CATEGORY FROM DS_JOBS WHERE NAME NOT LIKE '//%' AND NAME NOT LIKE '\\%' ORDER BY CATEGORY, NAME;
by ray.wurlod
Tue Aug 23, 2011 3:03 pm
Forum: General
Topic: Datastage Installation on OEL6 Linux but Project not created
Replies: 5
Views: 5267

Those error messages refer to routines that should be, but aren't, in the global catalog space. The fact that they aren't suggests that the installation did not complete successfully. Did you inspect the install log?

It remains the case that OEL Linux is not a supported operating system.
by ray.wurlod
Tue Aug 23, 2011 3:01 pm
Forum:
Topic: Restricting Node to the physical processor
Replies: 1
Views: 997

There is no concept of tying nodes to physical processors. Even with something like Affinity in place you have no control over the processes that run DataStage jobs, particularly parallel jobs, start. And you certainly can't do this with Metadata Workbench, which is much more an after-the-event util...
by ray.wurlod
Tue Aug 23, 2011 6:21 am
Forum: General
Topic: find category name
Replies: 9
Views: 2965

Code: Select all

SELECT NAME FROM DS_JOBS WHERE CATEGORY LIKE '%<<Category>>';