Search found 186 matches

by srini.dw
Wed Mar 26, 2008 4:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Compare the number of records
Replies: 5
Views: 2693

I will check with option provided and come back if it works, Thanks for the information provided
by srini.dw
Wed Mar 26, 2008 3:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Compare the number of records
Replies: 5
Views: 2693

Please ignore the word CART, take 1 input file and other Control file
by srini.dw
Wed Mar 26, 2008 3:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Compare the number of records
Replies: 5
Views: 2693

Compare the number of records

Hi, I have 2 files CART input file and CART control file. 1. The CART input data file will have an number of rows. Eg. VIS.DAT CART control file will be having the told number of records present in CARTinput file. Eg.. VIS.DAT 55000 Question: How to compare the number of records present in CART inpu...
by srini.dw
Mon Mar 17, 2008 12:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: no matching key from 2 tables
Replies: 1
Views: 706

no matching key from 2 tables

Hi, I have 2 tables Table ABC and Table DEF Table ABC FACTOR_NBR,FACTOR_NM .50----> SQI .00----> BAG .00----> COMP .50----> PROFIT Table DEF PROFIT_INDX SRVC_QLTY_INDX COMP_INDX BAG_INDX SRVC_RECOMND_INDX ------------ > To Update Based on the values of Table ABC, I need to do the calculations (below...
by srini.dw
Tue Mar 11, 2008 11:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: percent_rank() function in Datastage
Replies: 11
Views: 7094

Without two passes you can not calculate percent, rank or any other value that depends on the total count or value.

How to do this, still not able to figure out
by srini.dw
Tue Mar 11, 2008 6:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: percent_rank() function in Datastage
Replies: 11
Views: 7094

We do not have Oracle in this project, its Teradata and Datastage. We are converting from Oracle to Teradata
by srini.dw
Thu Jul 26, 2007 10:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Exporting nullable field - Warning
Replies: 1
Views: 1372

Exporting nullable field - Warning

Hi, I am loading data into Sequential file.Before loading data into the file doing Null Handling.Below code ..... If IsNull(Move_EmplData.Addr_Street) Then '' Else If trim(Move_EmplData.Addr_Street) Then '' Else trim(Move_EmplData.Empl_Addr_Street2) I am getting this warning in Director main_program...
by srini.dw
Fri Jul 13, 2007 6:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: To find columns in the project
Replies: 3
Views: 1005

Thank you, that query is working
by srini.dw
Mon Jul 09, 2007 9:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: To find columns in the project
Replies: 3
Views: 1005

To find columns in the project

Hi, In a project i have 400 jobs, in that I have a table i.e., I08_TBL, In one of the V15_TBL we have used the I08 table as the lookup, for some reason we need to change the I08 table, how to find out all the jobs which is using I08 key and code columns in the project. Plz let me know the solution, ...
by srini.dw
Fri Jul 06, 2007 8:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue with loading data into Flatfile
Replies: 2
Views: 960

Issue with loading data into Flatfile

I am loading data from Dataset to Flatfile. I need convert data Decimal(17,2) as Decimal(8,2) . Sample Data 000000000002210.00 Result 002210.00 For getting above result i have to do.... If it's integer data i am doing like this Str("0",6-Len(Trim(Move_EmplData.SAL))):Move_EmplData.SAL Samp...
by srini.dw
Thu Jul 05, 2007 4:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Process id, how to find for a particular job
Replies: 10
Views: 4524

Thanks Guys.... I needed that syntax.

Iam not going to kill any job.
by srini.dw
Thu Jul 05, 2007 4:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Process id, how to find for a particular job
Replies: 10
Views: 4524

Thanks Guys.... I needed that syntax.

Iam not going to kill any job.
by srini.dw
Thu Jul 05, 2007 4:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Process id, how to find for a particular job
Replies: 10
Views: 4524

Thanks Guys.... I needed that syntax.

Iam not going to kill any job.
by srini.dw
Mon Jul 02, 2007 2:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Process id, how to find for a particular job
Replies: 10
Views: 4524

thanks for the answer

Can you plz let me know the below answer
1. how to find the process id for a particular job from UNIX command.

thanks
by srini.dw
Fri Jun 29, 2007 3:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Process id, how to find for a particular job
Replies: 10
Views: 4524

Process id, how to find for a particular job

Hi, I know how to find the process id from Director, can you please let me know 1. how to find the process id for a particular job from UNIX command. 2. ps -ef|grep dsapi_slave|grep -v grep|grep USER_NAME Above command is used to kill a particular job which i found in dsxchange, could not understand...