Search found 245 matches

by arunkumarmm
Mon Jul 29, 2013 6:34 am
Forum: General
Topic: Unlock the jobs
Replies: 5
Views: 3196

Are you not able to open the job as well or just only the at the time of export? If you can open the job, try compiling the job or a force compile. To the best knowledge I have, cleanup resources is the only way to find the PID for a job. And all you need to do, is the export for now, you can try to...
by arunkumarmm
Mon Jul 29, 2013 4:13 am
Forum: General
Topic: Unlock the jobs
Replies: 5
Views: 3196

I dont think you need admin right for this. Double check your process ID.

Alternatively you can login to your Admin client (As a developer), and try to kill it from there, with job name I guess.
by arunkumarmm
Fri Jul 26, 2013 12:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dynamic XSD
Replies: 3
Views: 2293

Thanks Ray. I did develop the job, and it was working good. But had to do a lot of setup for passing values to those parameters.
by arunkumarmm
Fri Jul 26, 2013 3:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dynamic XSD
Replies: 3
Views: 2293

If your XMLs will differ only with the number of columns, I believe you dont have to worry about it. You can code your job with the maximum available columns and select "replace empty with NULL", you should be good to go. If you have different XML structures, where your X-Path will differ ...
by arunkumarmm
Thu Jul 25, 2013 8:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Regarding Use of ICONV/OCONV Functions in the Parallel Jobs.
Replies: 7
Views: 9093

ray.wurlod wrote:They are simply not available in the parallel Transformer stage, and never will be. ...
Hi Ray, I was hoping to see these functions in parallel transformer one day, just like ereplace made it in 9.1

Is there any particular reason why you mentioned that they will never be available?
by arunkumarmm
Wed Jul 24, 2013 5:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Poor performance Sequential file to Oracle table
Replies: 2
Views: 1114

Did you check the server load in your production environment? Are there other jobs running at the same time, using more memory which might be affecting this job's performance?
by arunkumarmm
Wed Jul 24, 2013 1:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_STRING_PADCHAR override at job level not working
Replies: 9
Views: 6748

Just out of curiosity. All the EBCDIC files are fixed width, isnt it? Where do you actually get this padchar issue?

And also, did you try giving the value for "APT_STRING_PADCHAR" as ' ' ?
by arunkumarmm
Tue Jul 23, 2013 7:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Create output file names based on data in a column
Replies: 21
Views: 10634

I guess his output to be a typo, as he even missed '7'. If my guess is right, you can have your stage variable as below: StagVar1: StagVar1 : ';' : ColumnA : ';' : ColumnB : ';' : ColumnC StagVar2: Trim(StagVar1,';',"L") set you stage variable's initial value as Empty ( '' ) Assuming that ...
by arunkumarmm
Tue Jul 23, 2013 6:11 am
Forum: General
Topic: Need to use date to run certain jobs in a Sequence
Replies: 8
Views: 2956

If it is the same table you are using and just the different columns depending on the 'date' parameter, why dont you just pass this date to the job and use it in your source query? Why do you need two jobs?
by arunkumarmm
Fri Nov 18, 2011 3:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to handle newline character reading from sequential file
Replies: 24
Views: 23461

kirankumarreddydesireddy wrote:If I enable the "Contains Terminators" to yes,I am able to read the value of this field as "hi this",the remaining text "is rakesh" is ignored.
I believe that might be the problem with your viewer. Try double clicking the column value and check if you see more values.
by arunkumarmm
Thu Oct 27, 2011 11:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: rouding last digits to 2 decimal places
Replies: 2
Views: 1569

Try the below in your output column derivation. The value '10000000000' in the derivation depends on the maximum digits you get after the decimal point.

Column * (10000000000[1,(Len(Field(Column,'.',2))-1)]
by arunkumarmm
Tue Oct 25, 2011 12:41 pm
Forum: General
Topic: Reg business process involved Insurance ETL Industry
Replies: 2
Views: 1435

Does that really depends on the domin you work on?
by arunkumarmm
Mon Oct 24, 2011 1:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: To have numbers only in a phone number column.
Replies: 11
Views: 3975

I'm not sure if there's a function in parallel but if you can use a BASIC_Transformer, you can use Oconv('String',"MCN") to just get the numbers alone from your string.
by arunkumarmm
Mon Oct 24, 2011 11:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Multiple instance job: Different input files,one output file
Replies: 5
Views: 2412

For your 2nd question, you can create a job, which overwrites the output file from a null file and call it in the job sequence only when it is your first instance and by-pass it for the other two. And in the core job you can always use 'Append'