Search found 5168 matches

by kumar_s
Sun Jan 21, 2007 9:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job access by other and cant unlock
Replies: 24
Views: 4496

Irrespective of the users, dsadm will have the full control of that.
by kumar_s
Sun Jan 21, 2007 9:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Issue retrieving number of rows processed
Replies: 18
Views: 4417

ds_team wrote:I inserted a transformer stage and still it is giving that random error.

Have you tried the other approaches suggested?
by kumar_s
Thu Jan 18, 2007 5:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to Convert datetime to internal format
Replies: 6
Views: 1328

Why need to convert into numrical representation, if so need use use another funcition of SecondsSinceFromTimestamp()
by kumar_s
Thu Jan 18, 2007 5:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: To clear a Teradata Table
Replies: 3
Views: 1008

Yea, so you can call one of the three jobs which loads the table, again after the three jobs finished in Batch. Alternatively, you can use command line functions called in Routine or script.
Or use After SQL of the third job to Truncate the table.
by kumar_s
Thu Jan 18, 2007 5:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sending the Stop message to DataStage from Unix..
Replies: 17
Views: 2713

Hi,
You are using DSExecute("UNIX",Command, Result, SystemReturnCode), Aren't you?
Use DSLogInfo to see what is the Result and SystemReturnCode, and change your code accordingly.
by kumar_s
Thu Jan 18, 2007 5:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Counts and sums in Datastage with out 'Aggregator' stage
Replies: 21
Views: 24520

If you need to output in this format,
a,b,3
m,n,2
x,y,1
The better way is to group by from you soruce SQL. If key1 and key2 are indexed, SQL should me much more effecient.
by kumar_s
Thu Jan 18, 2007 5:05 pm
Forum: General
Topic: Unable to import ODBC table defs
Replies: 19
Views: 7567

Can your other team mate able to make it up with your datastage use id/pwd?
Same way, what happens if you try with the other members login in you PC?
by kumar_s
Thu Jan 18, 2007 5:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: To clear a Teradata Table
Replies: 3
Views: 1008

You can alternatively limit the row from the source of the exisining job design through a parameter. If the source is from DB and if you have a Userdefined SQL, have a extra condition in WHERE class as 1=2 for no rows to extract and 1=1 for normal cases. Or if you have transformer, use @INROWNUM =0 ...
by kumar_s
Thu Jan 18, 2007 4:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ENVIRONMENT USER DEFINED VARIBLES
Replies: 4
Views: 1047

It will hurt if you overwrite the existing DSParam file, if that is under use. :wink:
by kumar_s
Thu Jan 18, 2007 4:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sending the Stop message to DataStage from Unix..
Replies: 17
Views: 2713

Alternativley you can 'Abort' the routine based on the ReturnCode as well.
by kumar_s
Thu Jan 18, 2007 4:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: decimal_from_string dosent work ?
Replies: 8
Views: 1756

What is the job desing? May be the operator combination might screwed up your function. Try with Combinable operator to false. If you have parallel version, I dont think transformer is a plugin to upgrade. you should be having the stage, may be you may need to customize your pallet to get the stage ...
by kumar_s
Thu Jan 18, 2007 4:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to generate a unique sequence number in DataStage
Replies: 4
Views: 3731

If mark the topic, it avoids others to revisit it.
by kumar_s
Thu Jan 18, 2007 5:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to generate a unique sequence number in DataStage
Replies: 4
Views: 3731

Create Round Robin partition and use the logic that you are using (as specified in your other post). Again it will minimize the so called hole, but not all.
If you are more concern about sequence number, run the job in Sequential mode, atleast the Transformer and use simply @INROWNUM.
by kumar_s
Thu Jan 18, 2007 5:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem with sequence number
Replies: 2
Views: 685

Hi, You can refer the FAQ related to this sequence number generation. This has been discussed earliar. Since the number been generated in different partition, you cannot expect the nubmers to be gererated in a sequence order. It depends on the number of records that flows in each partition. If your ...