Search found 56 matches

by nikhilanshuman
Mon Dec 28, 2009 4:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Raise abort signal by Execute command Activity
Replies: 7
Views: 9710

Hi, Use sqlplus -s to suppress unnecessary messages. Instead of Execute command activity,call a server routine from user variable activity. in the server routine,do following : cmd= "sqlplus -s userid/passwd@server Your query" Call DSExecute("UNIX",cmd,Output,Returnval) *Now comp...
by nikhilanshuman
Mon Dec 28, 2009 4:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How can I remove numeric values from a string?
Replies: 4
Views: 2629

Re: This is a string given below..

the string is like in the source data " abcde 1234 efgh 45678 nmhj 7895 ". i want to convert in target like "abcde efgh " ie remove numeric values Use the Convert function in the transformer to convert the numbers. Syntax : Convert(%fromlist%,%tolist%,%expression%) For example t...
by nikhilanshuman
Mon Dec 28, 2009 2:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Raise abort signal by Execute command Activity
Replies: 7
Views: 9710

Re: Raise abort signal by Execute command Activity

Hi, Add a "Nested condition activity" after the execute commadn activity. You can check the value reurned by the execute command activity by using "activityname.$ReturnValue" in nested condition activity. Check the value returned by "activityname.$ReturnValue" in case o...
by nikhilanshuman
Mon Dec 21, 2009 3:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Compile vs Reset
Replies: 7
Views: 3083

Re: Compile vs Reset

Compiling a job generates the OSH.If a job is reset,the OSH is not created.After reseting a job,it comes into "runable" state.

Note:If a job is recompiled,OSH is generated only for the changed components.
by nikhilanshuman
Sat Dec 19, 2009 7:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Difference between compile and force compile.
Replies: 2
Views: 6574

Difference between compile and force compile.

Hi,
what is difference between compile and force compile?I tried searching the forum for this.
by nikhilanshuman
Tue Dec 15, 2009 1:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: RT_STATUS structure for deleting invocation ids
Replies: 14
Views: 9172

The plot thickens.... The customer wants to ensure that only the instances pertaining to the log purge settings are removed. i.e. I remove only the instances RT_STATUS older than 5 days. RT_LOG entries have already been removed using the Auto Purge Using Ray's modified code I have generated these r...
by nikhilanshuman
Sat Dec 05, 2009 9:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to retain message handler settings during export/import
Replies: 3
Views: 2926

chulett wrote:Automatically? No, not that I've seen. You can manually copy over the message handler file itself, however. ...
Thanks chulett.
please tell me the steps to be taken to copy the message handler file.
where are the message handler files saved?
by nikhilanshuman
Sat Dec 05, 2009 6:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to retain message handler settings during export/import
Replies: 3
Views: 2926

How to retain message handler settings during export/import

Hi,
I suppress certain warnings using message handler.The problem is when i export and import the dsx of the job from one environment to another,the warnings appear again.I have to suppress the warnings again.

Is there any way to retain the settings of message handlers during export of datastage job?
by nikhilanshuman
Sun Nov 29, 2009 7:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need help in understanding the OSH.
Replies: 3
Views: 1261

ArndW wrote:P0 and P1 are partitions 0 and 1, "OP" are operators. The confusions stems from a sequential operator that doesn't run on both nodes and operator combination of stages at runtime. ...
Thanks ArndW.Just one doubt is how the number of processes can be calculated from the given OSH?
by nikhilanshuman
Sun Nov 29, 2009 5:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need help in understanding the OSH.
Replies: 3
Views: 1261

Need help in understanding the OSH.

Hi, While reading the "Parallel job advenced user guide" , i came across following OSH : ##I TFSC 004000 14:51:50(000) <main_program> This step has 1 dataset: ds0: {op0[1p] (sequential generator) eOther(APT_HashPartitioner { key={ value=a } })->eCollectAny op1[2p] (parallel APT_CombinedOpe...