Search found 5168 matches

by kumar_s
Fri Sep 08, 2006 8:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: RowCount from the DSGetLinkInfo always return zero
Replies: 20
Views: 6587

Trun on your statistics and check whether you are getting the number of rows passed per second in the green link, once the job is finished.
If not you need to turn on the Monitor.
by kumar_s
Fri Sep 08, 2006 8:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: string to decimal
Replies: 5
Views: 1903

Decimal(4,2) ment total length is 4 and out of it, precision is 2. And hence the mantissa is also 2 here. If it is fixed width 4 consicutive digit can be read as 4,2.
In case of delimited input, 10 will be considired as 10.00.
by kumar_s
Fri Sep 08, 2006 8:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage EE 7.5x2
Replies: 8
Views: 1571

You can try from ControlPanel Add or Remove programs and cleaning up the registry if required.
by kumar_s
Thu Sep 07, 2006 6:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fatal : node_node1: Player 2 terminated unexpectedly.
Replies: 34
Views: 50742

To narrow down, try running the job in a single node config file, so that, you can eliminate lower down the number of processors running for that user. And can confirm, whether its related to number of processor/user limit.
by kumar_s
Thu Sep 07, 2006 6:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Lookup Question
Replies: 15
Views: 3163

You can do this after doing a lookup, and sorting based on the data and using stage variables picking the lates and transforming.
But if yo give with some example, it will be easy to follow up.
by kumar_s
Thu Sep 07, 2006 6:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: PX jobs not terminating
Replies: 5
Views: 1367

panchusrao2656 - Do you mean to say, the waist time taken by the job is due to the post index building timing?
by kumar_s
Thu Sep 07, 2006 6:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: UserDefined Query Delete statement
Replies: 11
Views: 2950

Do you get any erro when you give just this command,

DELETE From postal_loc_pickdel_test1 WHERE pl_location_lk in (select pl_location_lk from postal_location where co_ctry_lk IN (select co_ctry_lk from country where co_ctry_cd='#CTRY_CD#'
by kumar_s
Thu Sep 07, 2006 6:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: why to import table definitions by Orchestrate Schema def.
Replies: 5
Views: 1736

You can use plug in metadata as well.
by kumar_s
Thu Sep 07, 2006 6:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: merging two files with different metadata
Replies: 14
Views: 8019

Either you can use merger or lookup based on the volume of data. Since your concertn is on metadata, I guess you are on Concatination, if so just use cat file1 file2 > new filename command in any of the unix command execution option, like Execute command activity or Before/After job subroutine.
by kumar_s
Thu Sep 07, 2006 5:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Executing Two dos commands in Execute Command Activity
Replies: 12
Views: 3852

DSJobStartDate of what? If its the for the job that produce the file, you can use UserVariable Activity or Routine activity and use the same command DSJobStartDate and pass as UserStatus.
by kumar_s
Thu Sep 07, 2006 4:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: datastage
Replies: 5
Views: 1246

Check whether you are trying to give the same path and name as the existing job.
by kumar_s
Thu Sep 07, 2006 4:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Difference b/w DSLinkRowCount and @rownum
Replies: 2
Views: 2845

@INROWNUM or @OUTROWNUM.
DSLinkRowCount is similar to @OUTROWNUM not simlar to @INROWNUM.
Have a constraint in the transformer, you can find the difference.
by kumar_s
Thu Sep 07, 2006 3:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Executing Two dos commands in Execute Command Activity
Replies: 12
Views: 3852

move #Old_Pdath#\#Old_Filename# #New_Path#\#New_Filename##Date_parameter#
by kumar_s
Thu Sep 07, 2006 3:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: create a cursor with datastage ?
Replies: 8
Views: 4385

Hi Nick,
Welcome to Dsxchange!!!

You may need to say the purpose of cursor as well. Do you have more to come in the Body part of the cursor? If it is just to insert into the a table with a some condition, you can acheive this with simple quer with decode logic and where class.
by kumar_s
Thu Sep 07, 2006 3:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Does a developer need UNIX Shell access to develop jobs?
Replies: 2
Views: 1805

Welcome to Dsxchange!! Basically Datastage uses the credential features of the operating system upon which the server is residing. In your case unix. You may be not to loging to Unix, but if you could not loging to unix using given user id, it wont allow you to log to datastage as well. Apart from t...