Search found 40 matches

by vibwipro
Tue Jan 13, 2015 3:07 pm
Forum: General
Topic: Handle Java Encrypted Source file.
Replies: 10
Views: 3852

Handle Java Encrypted Source file.

Hi All, I am having a requirement which need to be implemented in Datastage. A source file is provided to us which is Java encrypted we need to decrypt it apply transformation logic and again load data in same encrypted format in target file. Encrypted formula is provided to me. Q1 :- Which stage I ...
by vibwipro
Tue Jan 13, 2015 2:40 pm
Forum: General
Topic: Job Sequence question - loops and user variables
Replies: 3
Views: 1690

Re: Job Sequence question - loops and user variables

Execute Command Stage will be an option for this logic to implemented. Every time output value will be over written to existing file with new value concatenated to it. :idea:
by vibwipro
Tue Jan 13, 2015 8:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Complex file stage vs Sequential file stage
Replies: 4
Views: 3423

Re: Complex file stage vs Sequential file stage

Mainframe file(EBCIDIC) should be read with Complex Flat files, because this stage can handle decoding of Compressed and non- compressed fields based on Copy Book provided to CFF stage. Out put will be in ASCII format over which trannsformations rules can be implemented. Yes you can recd (Pile) deli...
by vibwipro
Mon Jan 12, 2015 10:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Startup Time is More
Replies: 3
Views: 1841

Re: Startup Time is More

Use Monitor Tab over concerned job to verify which stage is taking more time, then it can help u in analyzing logic's implemented.
by vibwipro
Fri Jan 09, 2015 10:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: It is recommended you recompile the job in order to use the
Replies: 4
Views: 2120

Re: It is recommended you recompile the job in order to use

Please check while exporting whether you have checked Include dependent Items ?? It is suggested to uncheck this option if you are taking export of only jobs. You can check Exclude read-only items options.
by vibwipro
Mon Jan 05, 2015 12:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SIGSEGV Error when trying to load LOB data
Replies: 6
Views: 3979

Re: SIGSEGV Error when trying to load LOB data

A SIGSEGV signal is caused by an invalid memory reference or a segmentation fault. You are probably trying to access an array element out of bounds or trying to use too much memory. So what transformation logic is implemented in Transformer ? Is any Surrogate Key being generated or some thing like t...
by vibwipro
Mon Jan 05, 2015 10:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SIGSEGV Error when trying to load LOB data
Replies: 6
Views: 3979

Re: SIGSEGV Error when trying to load LOB data

Hi

Try to Test Connection as well as Try to view data in both Source and Target stage.
by vibwipro
Mon Jan 05, 2015 10:26 am
Forum: General
Topic: Capture Fatal error message
Replies: 7
Views: 2935

Re: Capture Fatal error message

Hi

You Can Write a Small Server routine using "DSRunJob" command which will fetch last run Job Status and based on status you can write Message in Status Report. This routine will be embeded in Loop it self only.
by vibwipro
Mon Jan 05, 2015 9:56 am
Forum: General
Topic: Parameter set replacing values
Replies: 2
Views: 2849

Re: Parameter set replacing values

You Can Use
sed 's/Old-Value/New-value/g' :lol: