anchal rajput


{ City } new delhi
< Country > india
* Profession * system engineer
User No # 109525
Total Questions Posted # 1
Total Answers Posted # 2

Total Answers Posted for My Questions # 1
Total Views for My Questions # 6122

Users Marked my Answers as Correct # 6
Users Marked my Answers as Wrong # 3
Questions / { anchal rajput }
Questions Answers Category Views Company eMail

What is the difference between Link collector and Funnel Stages?

1 Data Stage 6122




Answers / { anchal rajput }

Question { 5281 }

I have source like "abcdefghijklmnopqrs", how to change 10th character from j to z in datastage?


Answer

Source file Input: abcdefghijklmnopqrs

Solution:- seq file---> transformer stage---> seq file

under function-->string-->convert function will give desired output.

Convert("j" , "z" , "abcdefghijklmnopqrs" )

Target file Output: abcdefghizklmnopqrs

Is This Answer Correct ?    6 Yes 2 No

Question { IBM, 6443 }

A job is having only 2 stages I/p dataset and target table.Job is taking very long time to load 50 million records.How to improve performance of this job.


Answer

Check the DataStage Director job log for jobs which do not show job run statistics and confirm whether the following variable is defined:
APT_NO_JOBMON
If APT_NO_JOBMON is defined and set to value of 1 or true, then it will disable job monitoring and process metadata reporting for parallel jobs.

Confirm the JobMonApp process is up and running:
ps -ef | grep JobMonApp

default ports for JobMonApp is : 13400 and 13401

Both ports must be in listen state.

if you are getting this error: Failed to connect to JobMonApp on port 13401" please restart this service.

[root@ibmiis9 ~]# cd /opt/IBM/InformationServer/Server/PXEngine/
[root@ibmiis9 PXEngine]# export APT_ORCHHOME=`pwd`
[root@ibmiis9 PXEngine]# cd java/
[root@ibmiis9 java]# ./jobmoninit stop
JobMonApp has been shut down.
[root@ibmiis9 java]# ./jobmoninit start
JobMonApp has been started.
[root@ibmiis9 java]#

Is This Answer Correct ?    0 Yes 1 No