Search found 161 matches

by NEO
Thu Nov 03, 2005 12:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Protect jobs from delete
Replies: 11
Views: 3742

chulett wrote:You need to make the project a 'Protected' project. And yes, via the Administrator.
I would like to do that only for a few specific important jobs in the project though.
by NEO
Thu Nov 03, 2005 12:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Protect jobs from delete
Replies: 11
Views: 3742

Nope!!
by NEO
Thu Nov 03, 2005 12:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Protect jobs from delete
Replies: 11
Views: 3742

Protect jobs from delete

How can you protect a job from being deleted. I know how to make them readonly, but not how to protect them from being deleted. Could something be done in the administrator command window? One solution I can think of is to somehow lock the jobs. As if someone is working on them. That way DataStage w...
by NEO
Wed Oct 05, 2005 11:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Job Abort...Unknown reason
Replies: 7
Views: 5176

Its happening again for this one sequencer. The Sequencer aborts with the foolowing message Job control process (pid 737344) has failed When I try to look into the PH folder, I see this message. DataStage Job 876 Phantom 24744 Program "DSD.GetStatus": Line 25, Read operation failure. Progr...
by NEO
Thu Sep 29, 2005 2:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Job Abort...Unknown reason
Replies: 7
Views: 5176

The problem seems to have gone away lately. I cleaned up the project and rebuilt indices. I dont think its linked to my problem, but getting rid of a lot of junk in the project seems to have helped.
Thanks for all your inputs.
Jay
by NEO
Mon Sep 26, 2005 12:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Job Abort...Unknown reason
Replies: 7
Views: 5176

DataStage Job Abort...Unknown reason

Hello all, We have a few jobs in our project that seem to abort at random. When I digged into the &PH& folder messages, I saw the following. Any ideas on why the log file has trouble getting written. I was wondering if some other person running the same job might belong to a different unix u...
by NEO
Thu Sep 08, 2005 1:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to copy contents in Data Browser
Replies: 2
Views: 1062

Unable to copy contents in Data Browser

Hi, I just found out that , I was unable to copy the contents in the data browser for more than one row. In version 7.0 I was able to just drag the cursor and do CTRL+C and paste it in excel spread sheets. Now we have 7.5 and I am unable to do the same. Did someone face the same issue? Is this a new...
by NEO
Thu Feb 10, 2005 12:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Extract Column name in Trx through a function call
Replies: 10
Views: 3762

A better example would be IF @TRUE THEN * Column derivation code for pin DSLink5 Pin%%V0S4P2.Column%%1 = (Pin%%V0S4P1.Column%%1 : 10) Pin%%V0S4P2.Column%%2 = (testroutine("")) Pin%%V0S4P2.Column%%3 = (testroutine("")) Pin%%V0S4P2.Column%%4 = (TestRout("1")) Pin%%V0S4P2....
by NEO
Thu Feb 10, 2005 12:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Extract Column name in Trx through a function call
Replies: 10
Views: 3762

I have a question on a way to reverse engineer the RT_BPxxx transformer code. Heres a small chunk of code IF @TRUE THEN * Column derivation code for pin DSLink7 Pin%%V0S4P3.Column%%1 = (Pin%%V0S4P1.Column%%1 : 10) Pin%%V0S4P3.Column%%3 = (testroutine("")) Pin%%V0S4P3.Column%%4 = (TestRout(...
by NEO
Thu Feb 10, 2005 10:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Extract Column name in Trx through a function call
Replies: 10
Views: 3762

Only using proprietary, undocumented, and unsupported library information will allow you to do what you want, and word is that the internal repository design is about to change (again) rendering these hacks useless in future releases. In order to get the column name, you must resolve the internal s...
by NEO
Thu Feb 10, 2005 8:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Extract Column name in Trx through a function call
Replies: 10
Views: 3762

My assumption was that all routines are called as 'by Value' and not 'by Reference'. Hence the value provided to a function may not be used to trace its origin column. You need to specifically use 'COMMON' method to deterime a common reference. Having said that, I assume that there can be some poss...
by NEO
Thu Feb 10, 2005 7:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Extract Column name in Trx through a function call
Replies: 10
Views: 3762

Try IConv with MCN option to report on the numbers. If MC/N format returns a blank, then your field does not contain any non-numeric character. You can use the status to confirm the conversion. To obtain the column name, maybe you can embed the incoming column that you plan to use for data clensing...
by NEO
Thu Feb 10, 2005 7:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Extract Column name in Trx through a function call
Replies: 10
Views: 3762

Extract Column name in Trx through a function call

Hi, I am planning to write a function which when called in it's derivation will return the column name. The function takes no arguments. I was wondering if its possible through DataStage run time variables to do that and any pointers on how. My main objective is to write a function, which converts n...
by NEO
Wed Dec 15, 2004 5:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Source and Lookup Same table
Replies: 1
Views: 556

The lookup goes to the transformer. Formating issues I guess:)
by NEO
Wed Dec 15, 2004 5:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Source and Lookup Same table
Replies: 1
Views: 556

Source and Lookup Same table

Hi, I have a job design looking like this Source(Table A) ----> Transformer----->Target (File) ^ | | Look Up (Table A) Table A has a single Key column and theres another column at the end called indicator which can be Y or N. I would like to remove the records with indicator N which are an exact cop...