DataStage Job not opned

Post questions here relative to DataStage Enterprise/PX Edition for such areas as Parallel job design, Parallel datasets, BuildOps, Wrappers, etc.

Moderators: chulett, rschirm, roy

Post Reply
thepakks
Participant
Posts: 22
Joined: Mon Aug 13, 2007 4:28 am
Location: Delhi

DataStage Job not opned

Post by thepakks »

Hi,
When I open a job I got following massage.

"Record TeradataPX in file DS_STAGETYPE does not exist."

Pls suggest a solution.
Deepak
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

Potassium permanganate in water.
:lol:
Last edited by ray.wurlod on Tue Feb 17, 2009 1:54 am, edited 1 time in total.
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

It sounds like the index on the local repository table DS_STAGETYPES has become out of date (or that the Teradata stage types were not installed in the project, but I'd guess the former).

Open your Administrator client command window and, when no-one else is using the project (and you can be absolutely sure that this is the case) execute the following command.

Code: Select all

DS.REINDEX DS_STAGETYPES
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
thepakks
Participant
Posts: 22
Joined: Mon Aug 13, 2007 4:28 am
Location: Delhi

Post by thepakks »

Only TeraData API and Mload stage is not opened.

Plz giv a solution.
Deepak
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

I did.
:roll:
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

I did.
:roll:
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

Try the following query to determine whether the stage types are installed in the project. It will return rows if they are, and no rows if they are not.

Code: Select all

SELECT * FROM DS_STAGETYPES WHERE EVAL "UPCASE(@ID)" LIKE '%TERA%' OR EVAL "UPCASE(@ID)" LIKE '%ML%';
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

Please be more careful with spelling ("please" rather than "plz" and "give" rather than "giv"). We like to maintain a professional standard of written English on DSXchange, not least because it is easier for those who do not have English as their first language.
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
thepakks
Participant
Posts: 22
Joined: Mon Aug 13, 2007 4:28 am
Location: Delhi

Post by thepakks »

ray.wurlod wrote:Please be more careful with spelling ("please" rather than "plz" and "give" rather than "giv"). We like to maintain a professional standard of written English on DSXchange, not least because it is easier for those who do not have English as their first language.

Hi,

I ran following query in command prompt and got following result set.

SELECT * FROM DS_STAGETYPES WHERE @ID LIKE '%TeradataPX%'

Result :

Stagetype name.... TeradataPX
Short description... Teradata data access
Category.............. Parallel/Database

1 records listed.

Teradata API and Mload Stage is disable in Designer.
Deepak
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

Please run the exact query that I specified. There should be four records reported.
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
attu
Participant
Posts: 225
Joined: Sat Oct 23, 2004 8:45 pm
Location: Texas

Post by attu »

Do you have "Enable remote execution of Parallel Jobs" checked in Administrator? If yes, Uncheck it.
Post Reply