DataStage project error

A forum for discussing DataStage<sup>®</sup> basics. If you're not sure where your question goes, start here.

Moderators: chulett, rschirm, roy

Post Reply
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

A project consists of three things, a directory containing the Repository objects and various other files, an entry in the UV.ACCOUNT hashed file, and various entries in the system tables for DataStage.

Remove the project directory and all its contents.

Remove the entry from the UV.ACCOUNT file. Get into the DataStage environment in the DataStage Engine directory and execute (very carefully)

Code: Select all

DELETE FROM UV.ACCOUNT WHERE @ID = '<<ProjectName>>';
While still in the DataStage environment clean up the system tables with the following command

Code: Select all

VERIFY.SQL PATHNAME <<pathname_of_project_directory>> FIX
(Note that without FIX is perfectly safe, and will report the intended repair actions. You can not run this command with the FIX keyword unless logged in with DBA privileges.)

This method ceases to be correct with effect from version 8.0.
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
Post Reply