Search found 15603 matches

by ArndW
Thu Sep 20, 2007 1:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Global Search and Replace for Stage Variables
Replies: 6
Views: 1574

I don't think anyone's code will do what you need. Because your logic spans lines, I'd think that writing a DS/BASIC program that reads a whole .DSX file to a dynamic array, which you can then process by searching for tokens, might be the easiest approach. If you declare the folder which contains th...
by ArndW
Thu Sep 20, 2007 12:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: installation error
Replies: 8
Views: 1601

During which part of the Windows install do you get this message?
by ArndW
Thu Sep 20, 2007 12:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to provide condition in lookup stage
Replies: 3
Views: 903

Sounds like you have a reproduceable test case to submit to your support provider as a bug; albeit not a high-priority one as you've already discovered the workaround.
by ArndW
Wed Sep 19, 2007 10:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to stop universe service manually
Replies: 5
Views: 2826

DataStage creates an applet in the Control Panel {I can't recall what it is called, probably DataStage} which lets you do this.
by ArndW
Wed Sep 19, 2007 10:48 pm
Forum: General
Topic: Datastage to informatica
Replies: 4
Views: 1061

I think the best place to get those types of questions answered correctly is in the Informatica forums, perhaps at the Informatica developer network.
by ArndW
Wed Sep 19, 2007 4:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle connect by functionality in DataStage
Replies: 8
Views: 2162

Craig - thanks, I was so much in DataStage mode that I assumed the "connect" meant database connectivity. My bad.
by ArndW
Wed Sep 19, 2007 4:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Load Balancing using job Control
Replies: 15
Views: 3554

If you can't access Ken's code you can code it in DataStage without too much effort. I have used this kind of resource control extensively, in fact I'm monitoring a job right now that takes the number of instances to run in parallel as a parameter. You cannot use the Job Activity in a sequencer, sin...
by ArndW
Wed Sep 19, 2007 4:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dataset Import error
Replies: 1
Views: 664

Are you 100% certain that your dataset is being created with the same metadata and parameters as in your job which reads it? It sounds like you are missing a column definition.
You can view the dataset's schema in DataSet management or with the UNIX orchadmin command.
by ArndW
Wed Sep 19, 2007 4:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Iterating a single server job over multiple schemes
Replies: 6
Views: 1953

vpauls,

I'm not sure I understand what you mean by "schema" in this context. Does this mean the job itself is on different servers with different userid/passwords? Or that the job runs on one machine, but you login to different database schemas? Or something entirely different?
by ArndW
Wed Sep 19, 2007 4:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to provide condition in lookup stage
Replies: 3
Views: 903

What (stage type) are you looking up from and how have you declared whether it is a normal or a sparse lookup?
by ArndW
Wed Sep 19, 2007 4:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle connect by functionality in DataStage
Replies: 8
Views: 2162

The PX Documentation contains several chapters on connecting PX and Oracle via different methods on different platforms. What specifically are you asking?
by ArndW
Wed Sep 19, 2007 4:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Global Search and Replace for Stage Variables
Replies: 6
Views: 1574

Colin - think recursion I often write either a DS/BASIC program (as a routine) or a DataStage job to do this kind of mass conversion - I read the .dsx file as input and create a new .dsx outpt and do the logic within DataStage. Alternately I will use EMACS, which allows for very simple macros to be ...
by ArndW
Wed Sep 19, 2007 4:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: TimeStamp Conversion
Replies: 3
Views: 1175

You won't get a timestamp unless your format string matches your data. Try formatting with '%yyyy%mm%dd %hh:%nn:%ss' and making sure your input string also has a dummy time part added to it. i.e. StringToTimestamp(DSLink2.MBR_DOB_DT:" 00:00:00","%yyyy%mm%dd %hh:%nn:%ss")
by ArndW
Wed Sep 19, 2007 4:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Month End Date Manipulation
Replies: 1
Views: 891

The builtin date manipulation routines let you do this easily - but you need to know how to handle such situations as "03-30-2003" minus one month. My favored approach is to use the 1st day of the month (every month has one) and then, once I get the answer, subtract one day to get the last day of th...
by ArndW
Wed Sep 19, 2007 4:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: automation of making jobs readonly
Replies: 5
Views: 1214

If you can do it in a UNIX script then the easiest way to do this in windows is to install a (free) toolkit such as MKS and just run your scripts directly under windows..