Search found 15603 matches

by ArndW
Mon Mar 20, 2006 4:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Exec Dos Command
Replies: 11
Views: 3129

Umberto, I am not sure about what you need to do; you posted the question as a UNIX server one, but are asking about DOS; you stated that you want a "before routine" to do something after the job completes successfully. If you has a DOS server installation, you can simply execute date /t > pippo.dat...
by ArndW
Mon Mar 20, 2006 3:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error 81002 when connecting from datastage clients to server
Replies: 8
Views: 8365

This is not an uncommon error and has been posted in many threads (remember that search is your friend). Do you get the problem if you try to connect using another client program such as the manager or administrator? Are you sure that the server has been started correctly (is there a dsrpcd process ...
by ArndW
Mon Mar 20, 2006 3:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: soundex function
Replies: 2
Views: 1144

Yes, it can be used with any latin alphabet based text. The algorithm for the Russell soundex is quite simple and will also work (a bit) with Polish. The formula is to keep the first letter then to remove all a, e, h, i, o, u, w, y in the string and then to assign numbers to the remaining letters (a...
by ArndW
Mon Mar 20, 2006 12:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: add/minus months function
Replies: 11
Views: 4157

Your date is coming in as a string in the format dd/mm/yy . You don't care about the dd portion and can do a substring on the month and year and perform you math on those. Even though it could be done as a single line in a derivation, a small routine would be best: Routine Subtract4MonthsfromDate...
by ArndW
Sat Mar 18, 2006 3:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: repository filtered
Replies: 9
Views: 2081

If you system administrator recycled DataStage by doing "kill -9"s on everything then your problem is that the indices have been corrupted. Go to the ADMINistrator tool, call up the command "DS.TOOLS" and use the option to regenerate indexes and you should be back up and running in no time.
by ArndW
Sat Mar 18, 2006 3:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Monitor utillity
Replies: 3
Views: 2191

The values do match between prstat/vmstat and what is shown in the monitor - at least for for that process. All of the routines compute %CPU by taking the ratio of CPU-time times and REAL-time. Differences will always arise because on a real system these values change dramatically second-by-second a...
by ArndW
Sat Mar 18, 2006 3:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error: Cannot open file BP_11
Replies: 9
Views: 3580

The BP subirectory for a job is a type 19 (directory) file that contains the generated source code for a job, and the BP.O contains the compiled objects. If you are not logging in as the user who original created this job then it is most likely a UNIX permissions issue that is preventing you from op...
by ArndW
Sat Mar 18, 2006 3:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to solve DSD.UVOpen Unable to open file
Replies: 1
Views: 843

Most likely causes are that the hashed file doesn't exist or that you don't have sufficient permissions.
by ArndW
Sat Mar 18, 2006 3:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Looking for DataStage7 contractor
Replies: 7
Views: 1510

Kjj,

don't you think that after 2 years this slot might already be filled?
by ArndW
Fri Mar 17, 2006 9:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Spaces added to string literal before entry into db
Replies: 2
Views: 730

Hello Sheltzer, could you put a dummy sequential file output with your string and the value of LEN(yourstring) or add a column with the derivation of LEN() and use the designer's debugger to see if the non-trimmed and trimmed values are acutally 3? What stage are you using to write to your target an...
by ArndW
Fri Mar 17, 2006 8:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: transformer output is only one row
Replies: 18
Views: 3832

@INROWNUM and @OUTROWNUM are just numbers and have nothing to do with the contents of the data in the rows. If you are looking to output a row or not depending upon its contents you will need to do something else; perhaps sorting the data and comparing your current row contents with those from the l...
by ArndW
Fri Mar 17, 2006 5:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: datatype of compressed data.
Replies: 14
Views: 4852

I'm at loss in that case; I don't know why you are getting mangled data. Can you work around it by copying and gunzipping outside of DataStage?
by ArndW
Fri Mar 17, 2006 5:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Finding a substring with wildcard
Replies: 12
Views: 4883

Are you looking to do this in a transform stage? If so, you could use

Code: Select all

IF In.Column[1,3]='DSX' THEN 'DSX' ELSE In.Column
. Or are you looking to do this elsewhere?
by ArndW
Fri Mar 17, 2006 4:52 am
Forum: IBM<sup>®</sup> DataStage TX
Topic: Which companies ues Datastage?
Replies: 2
Views: 2307

Mark,

the full client list is a guarded piece of information, but you could browse Ascential showcased customers at Ascential Customer Showcase
by ArndW
Fri Mar 17, 2006 1:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to elimanitate space
Replies: 7
Views: 1506

Use the convert function to remove all spaces, i.e.

Code: Select all

Convert(' ','',In.Col)
. It will only convert one char to another so is more limited than EREPLACE, but it is more efficient.