Search found 20 matches

by kd813
Thu Nov 22, 2007 1:43 am
Forum: IBM<sup>®</sup> DataStage TX
Topic: New line identifier
Replies: 1
Views: 3197

New line identifier

The input file is a CSV file. The problem is in unix the records are correctly placed in new line. But when the file is viewed through datastage, it does not identify the end of line and gives an error "TOO MANY COLUMNS". Do let me know if there is a place in datastage server edition to de...
by kd813
Mon Jul 02, 2007 11:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_CONFIG_FILE error while using dsjob
Replies: 11
Views: 8499

The problem is if I am calling the job in script A and passing the parameter APT_CONFIG_FILE to it from script B (where it is getting generated throught some funtion)then it is accepting the value of this parameter. But if I am generating the value of APT_CONFIG_FILE (using the same function ) in th...
by kd813
Mon Jul 02, 2007 8:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_CONFIG_FILE error while using dsjob
Replies: 11
Views: 8499

dsjob -run -param '$APT_CONFIG_FILE=${APT_CONFIG_FILE}' $PROJPM $Jobname
is not working
by kd813
Mon Jul 02, 2007 7:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_CONFIG_FILE error while using dsjob
Replies: 11
Views: 8499

dsjob -run -param '$APT_CONFIG_FILE=${APT_CONFIG_FILE}' $PROJPM $Jobname
is not working
by kd813
Mon Jul 02, 2007 7:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_CONFIG_FILE error while using dsjob
Replies: 11
Views: 8499

dsjob -run -param '$APT_CONFIG_FILE=${APT_CONFIG_FILE}' $PROJPM $Jobname
is giving error
by kd813
Mon Jul 02, 2007 7:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_CONFIG_FILE error while using dsjob
Replies: 11
Views: 8499

specifying the parameter within single quotes is not working
by kd813
Mon Jul 02, 2007 4:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_CONFIG_FILE error while using dsjob
Replies: 11
Views: 8499

APT_CONFIG_FILE error while using dsjob

I am passing the value for APT_CONFIG_FILE environment variable using a function, If the functin is called in a differrent shell script fron the one in which the Datastage job is called then the job runs successfully but if the variable is set in the same script then the job is failed by giving the ...
by kd813
Fri Jun 29, 2007 6:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Rounding in PX
Replies: 3
Views: 1881

i have tried using DecimalToDecimal(Link.Field,'round_inf') but this is not giving me the desired output
by kd813
Fri Jun 29, 2007 6:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Rounding in PX
Replies: 3
Views: 1881

Rounding in PX

I have a decimal input and wanted to round it to one decimal place
ie if input is 2.34 output should be 2.3
ans if IP is 2.19 OP should be 2.2

Kindly provide a solution as to how to achieve this
by kd813
Fri Jun 29, 2007 6:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Rounding in PX
Replies: 1
Views: 1228

Rounding in PX

I have a decimal input and wanted to round it to one decimal place
ie if input is 2.34 output should be 2.3
ans if IP is 2.19 OP should be 2.2

Kindly provide a solution as to how to acgieve this
by kd813
Thu Jun 28, 2007 3:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DecimalToString warning in job
Replies: 5
Views: 2883

DecimalToString warning in job

While using the following command : DecimalToString(lReadInput.NRx1,"fix_zero,suppress_zero") I m getting the following warning: "Transformer_0,0: Conversion error converting input field NRx1 to output field NRx1, data may have been lost" My input datatype is decimal(9,3) and out...
by kd813
Mon Jun 25, 2007 5:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_CONFIG_FILE error
Replies: 6
Views: 3671

thanks it worked
by kd813
Sun Jun 24, 2007 11:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_CONFIG_FILE error
Replies: 6
Views: 3671

ray.wurlod wrote:Single quote characters (hard quotes) are meaningful to the shell. Among other things, they prevent resolution of environment variable characters and expansion of wildcards. Lose the hard quotes.
[ ...
So shall I replace the single quotes with double quotes or shall I removethem completely?
by kd813
Sun Jun 24, 2007 11:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_CONFIG_FILE error
Replies: 6
Views: 3671

no its not.. as i have to change the value of the parameter at the run time
thats why i need to send it as parameter only
by kd813
Sun Jun 24, 2007 10:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_CONFIG_FILE error
Replies: 6
Views: 3671

APT_CONFIG_FILE error

I am using this command to pass the APT_CONFIG_FILE parameter using dsjob $DSPATH/dsjob -param '$APT_CONFIG_FILE=$APT_CONFIG_FILE' $PROJPM $Jobname When i pass the path istead of $APT_CONFIG_FILE in the command the job runs succseeflle but whn i pass it as paramenter as in the above command its givi...