Search found 15603 matches

by ArndW
Thu Mar 09, 2006 10:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: calling 2 after job routines
Replies: 2
Views: 827

You can only call one before/after job routine in a job. But there is nothing that will stop you from calling one or more additional routines from that one, as Venky has stated.
by ArndW
Thu Mar 09, 2006 9:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: sequential file
Replies: 5
Views: 814

Each one of the links going into your sequential file stage graphical object on the Designer canvas has it's own path information, and you need to give different file paths & names in both places. Are you sure that you have done this?
by ArndW
Thu Mar 09, 2006 9:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Locked with associated PID = 0
Replies: 10
Views: 3836

When a process aborts (with a core in UNIX) or someone did a "kill -9" on it it will show up in the lock tables with an associated pid of 0. The simplest and best short- and longterm solution is to get your admin to start the DataStage deadlock daemon which will automatically clean up conditions lik...
by ArndW
Thu Mar 09, 2006 9:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: server and parallel migration
Replies: 8
Views: 2095

You can't migrate hashed files to PX; you need to redesign the jobs. The same re-design applies to almost all Server jobs in order to take advantage of the parallelism possible in PX. The migration should be approached assuming the products are quite different, i.e. you will need to do some project ...
by ArndW
Thu Mar 09, 2006 9:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dataset, Fileset
Replies: 15
Views: 5138

I assume you are referring to a lookup file set and a data set. Lookup filesets are used in lookup stages only, datasets can be used in lookup stages as well as elsewhere. The lookup file set gives superior performance in lookups to datasets [according to the documentation, I've done some tests in t...
by ArndW
Thu Mar 09, 2006 9:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Commit Doubt
Replies: 2
Views: 719

The commit frequency is the transaction size in your stage.
by ArndW
Thu Mar 09, 2006 9:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date Calculation to get the next quarter based on Input Date
Replies: 17
Views: 3841

titto, I think the "next quarter" is understood when it is 3 months away from your data date. But you haven't explained ... so that is is '03'. as per logic i want next earliest quarter would be 05 what that logic is based on. Is the next quarter to be calculated from today's date? I think that the ...
by ArndW
Thu Mar 09, 2006 7:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Writing parameters to Hashed file
Replies: 12
Views: 2792

You need to apply some rules to avoid this error, since you cannot attach to your own job. Get your current job's name MyJobName = DSGetJobInfo(DSJ.ME,DSJ.JOBNAME) and in your loop through all elements put in a line IF LoopJobName = MyJobName THEN Handle = DSJ.ME ELSE Handle = DSAttachJob...
by ArndW
Thu Mar 09, 2006 6:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Number of processors in SMP System
Replies: 4
Views: 742

ravij, I am assuming you mean "processes", since a processor is synonymous with a CPU. The number of processes is affect by many factors and there is no single answer. You can have hundreds of processes running if they are not active and don't use too much memory and still have an acceptable perform...
by ArndW
Thu Mar 09, 2006 4:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Stage variables
Replies: 7
Views: 1852

As Balaji has already said, it is not possible; particularly when those transform stages are executed in separate processes. You should pass the data downstream by adding a column with the variable's value to the next transform.
by ArndW
Thu Mar 09, 2006 4:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: String data, right truncation
Replies: 1
Views: 1291

1. If you have a string declared as varchar(10) and you try to insert "Hello World" into the Db you will get this warning message.
by ArndW
Thu Mar 09, 2006 4:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Scratch Folder clearing
Replies: 1
Views: 608

As long as you have your DataSets put in another physical location, the contents of the scratch should not be required, particularly if you look at the file dates and delete the oldest ones.
by ArndW
Thu Mar 09, 2006 4:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS Server Engine 'CREATE.FILE' command description
Replies: 3
Views: 709

You can download IBM UniVerse User Reference Guide V10 and look at the information starting at page 1-162 for a starter.
by ArndW
Thu Mar 09, 2006 3:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer Stage & substring
Replies: 2
Views: 2559

Using INDEX("HELP","EL",1) will return a 0 if it is not found or a positive integer value if it is.
by ArndW
Thu Mar 09, 2006 2:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: converting 100s of rows into 100s of columns
Replies: 6
Views: 1564

Create a hashed file with just two columns, "CustNo" and "Data". Do a lookup on the customer number for each row in your input file. Use one of the substring functions (INDEX,LOCATE,MATCHES,etc.) to see if your attribute text is in the data portion. If not, write the record back with the new attribu...