DSR_ParseConfig: OPENSEQ of /opt/IBM/InformationServer/Server/PXEngine/etc/master_config.apt took ELSE clause, STATUS()=2
The default permission for the etc directory is rwxr-xr-x (755). This means that only the owner has write permission. Update the permission of this etc directory (located under ../IBM/InformationServer/Server/PXEngine on the WebSphere DataStage server machine) to give write permission to the user.
To do this, change the permission to allow group write. In the Unix shell, cd to the PXEngine directory and issue the command:
chmod 775 etc
2)How can we done the Unit Testing on datastage Jobs?
Usually, Unit testing covers the testing of individual job/sequence.
We need to ensure whether the job is completely performing the task, what it is supposed to do.
It should fullfill all the business logic coded in the job. We should prepare the test cases corresponding to all key logic coded like
- check of all functions coded,
- creation of file/dataset,
- insert/update/delete logic,
- Nullablilty checking etc..
Unit Testing - Need to ensure every single expression/logic is working fine.
3)I need to do multiple lookups for different columns in the source against the same dataset. I cannot use the Range lookup since the values are not necessarily in a certain range.
Do I have to create multiple datasets for each lookup? Or, are there any better options that I can avoid creating multiple datasets?
I am creating a Parallel job using Change Capture Stage. SQL Server(source stage), Oracle (target stage) I like change capture to do a insert when there is a insert(working) update when there is a delete (not working) update when there is a update(working) Please let me know how I can achieve this.
| |||||||||||
Ex. I have configuration files with 2 nodes . The source file is partitioned on custno.
e,g custno are 1,2,3,4.
So , datawise there are 4 partitions but only 2 logical nodes.
1> How will the data be allocated to the 2 logical nodes.
2> Also, if have a stage variable.As i understand 2 copies will be created.
or number of stage variable will be equal to number of data partitions.
A)
In datastage Partioning and nodes is different concepts. The job can be partioned into seven types ,Nodes is reduce the time given for nodes |