Search found 15 matches

by Theenathayalan
Sun Feb 14, 2010 1:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Retrieve dynamic parameter values of a job
Replies: 8
Views: 4107

Resolution Fix:

dsjob -logsum -type STARTED -max <n> <project> <jobname> | tail -2 | head -1 | tr '\t' '|' | cut -d"|" -f1 | xargs dsjob -logdetail <project> <jobname> | tr '\t' ' ' | grep " = " | tr '^' ' ' >/tmp/outt
by Theenathayalan
Sun Feb 14, 2010 1:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Retrieve dynamic parameter values of a job
Replies: 8
Views: 4107

I was waiting for more than 1 hour or even more in some instances.

-type STARTED -max <n> helped a lot. It's faster now.

Thanks a lot for your help, Craig !
by Theenathayalan
Sat Feb 13, 2010 3:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Retrieve dynamic parameter values of a job
Replies: 8
Views: 4107

Yes. I would need to do it from script.
by Theenathayalan
Sat Feb 13, 2010 2:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Retrieve dynamic parameter values of a job
Replies: 8
Views: 4107

I tried both of these options but in vain.

-jobinfo does not give current parameters passed.
-lparams and -paraminfo gives only default parameters stored. Not the current prameters.
by Theenathayalan
Sat Feb 13, 2010 2:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Retrieve dynamic parameter values of a job
Replies: 8
Views: 4107

Retrieve dynamic parameter values of a job

Hi I am using below command to retrieve the parameter values passed during a job run. I need to collect this information for all jobs in project across multiple servers. dsjob -logsum <project> <jobname> | grep STARTED | tail -2 | head -1 | tr '\t' '|' | cut -d"|" -f1 | xargs dsjob -logdet...
by Theenathayalan
Thu Oct 22, 2009 6:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: dscmdexport command line problem
Replies: 26
Views: 15688

registry value for output as externalized strings XML

Hi I am trying to export a job as XML using command line export. I want to export with default settings. That is, Output as externalized Strings in XML tab of the Export window. This is not working when doing via command line. I always get internal stored values. Do I need to change any registry val...
by Theenathayalan
Thu Oct 22, 2009 6:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: dscmdexport command line problem
Replies: 26
Views: 15688

registry value for output as externalized strings XML

Hi I am trying to export a job as XML using command line export. I want to export with default settings. That is, Output as externalized Strings in XML tab of the Export window. This is not working when doing via command line. I always get internal stored values. Do I need to change any registry val...
by Theenathayalan
Mon Oct 12, 2009 7:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: dsexport.exe command line export of jobs in xml format
Replies: 6
Views: 6913

Awesome

wfis wrote:use /xml just before the target location
It works great.

thank you very much.
by Theenathayalan
Sun Oct 11, 2009 9:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: dsexport.exe command line export of jobs in xml format
Replies: 6
Views: 6913

dsexport.exe command line export of jobs in xml format

Hi

I need to export jobs in xml format instead of dsx using command line dsexport.exe

Appreciate the help.

Thanks
Theena
by Theenathayalan
Mon Mar 23, 2009 12:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Contains Terminators option to handle newlines in Sequential
Replies: 9
Views: 4877

Hi.. The column delimiter is ~ The row delimiter is unix newline character. Some columns are text columns that contains newlines as datavalue. Actually we are redesigning our server jobs to parallel jobs. Server jobs - Sequential file has "Contains terminator option" which is being used. P...
by Theenathayalan
Sun Mar 22, 2009 7:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Contains Terminators option to handle newlines in Sequential
Replies: 9
Views: 4877

Ok..Thanks..Will try that..

Is there any other option to handle newlines in the input columns in the file data in parallel jobs....


Thank you
by Theenathayalan
Sat Mar 21, 2009 11:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Contains Terminators option to handle newlines in Sequential
Replies: 9
Views: 4877

No..The strings are not quoted in the input...

I was able to handle it in Server jobs. The Seq. file has contains terminator option in the columns tab.

But I could not find it in Parallel jobs.


Is this option present or any other option to acheive this?
by Theenathayalan
Fri Mar 20, 2009 1:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Contains Terminators option to handle newlines in Sequential
Replies: 9
Views: 4877

Contains Terminators option to handle newlines in Sequential

Hi

I know how to handle newlines appearing inthe column datavalues in the seq. file stages in DS Server.

How to achieve this in DS parallel jobs Seq. file stage.

Is there anyother way to handle newlines in data.

Thanks
Theena
by Theenathayalan
Sun Jul 22, 2007 8:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reject multiple rows from lookup
Replies: 1
Views: 1410

Reject multiple rows from lookup

I have a following requirement: From seq. file, I need to load another seq. file with the below conditions: 1. Input file has one column SolutionNumber. 2. With this solution number, I need to lookup on database to query 15 columns. Lookup query joins 5 or 6 tables. If lookup returns multiple data, ...
by Theenathayalan
Sat Jul 21, 2007 7:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Database Lookup return multiple results
Replies: 8
Views: 3735

Multiple row/no row handling

I have a following requirement: From seq. file, I need to load another seq. file with the below conditions: 1. Input file has one column SolutionNumber. 2. With this solution number, I need to lookup on database to query 15 columns. Lookup query joins 5 or 6 tables. If lookup returns multiple data, ...