Search found 53125 matches

by ray.wurlod
Thu Jan 25, 2007 3:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: dsexport and routines
Replies: 3
Views: 2626

I too don't think there's an option for this. Curiously, when I ran strings over dsexport.exe, there was nothing output. Nothing.
by ray.wurlod
Thu Jan 25, 2007 3:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: oracle error
Replies: 20
Views: 8244

And make sure that DSHOME has been set before you start using it in other environment variable definitions.
by ray.wurlod
Thu Jan 25, 2007 3:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Attempt to convert String value error
Replies: 6
Views: 1461

It is not legitimate to want to insert a string into an integer column. Why do you want to do this? What integer would you hope to get?
by ray.wurlod
Thu Jan 25, 2007 2:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Issues with Sequences
Replies: 13
Views: 2393

When I was learning operating system (PRIMOS) tuning in nineteen mumble mumble I was told that the optimum point is "just before the machine starts thrashing". That, of course, is a movable target, but the method was usually ramp up the parameter in question untill thrashing began, then back off a b...
by ray.wurlod
Thu Jan 25, 2007 2:52 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Remove duplicate keys
Replies: 14
Views: 3878

Umm... last time I looked Santiago was nowhere near Stockholm. That must be pretty amazing beer you have!
by ray.wurlod
Thu Jan 25, 2007 2:50 pm
Forum: General
Topic: Regarding parameters
Replies: 15
Views: 6147

There is no way to "test" the prompt text. All the prompt text is is the text that is displayed should the parameter be prompted for in the Job Run Options dialog. It allows the prompt to be in the local language (the job parameter name itself has to be in ASCII, since it effectively becomes a varia...
by ray.wurlod
Thu Jan 25, 2007 2:45 pm
Forum: General
Topic: NUMBER data types
Replies: 6
Views: 2709

I say stick to import. That way the table definition is untouched by human hands and least likely to contain errors.

You are, of course permitted - nay, encouraged - to type in column descriptions where these are absent.
by ray.wurlod
Thu Jan 25, 2007 3:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: writing to XML file
Replies: 9
Views: 2478

... and in the case of sequential file output, preserving the same transformations so that the test is fair?
by ray.wurlod
Thu Jan 25, 2007 3:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how output data are to be set as fixed length
Replies: 3
Views: 1479

Create a text file on the server that is fixed width format. Import its table definition, specifying that it is fixed width, and therefore you need to supply a comma-separated list of field widths. On the Format tab of a sequential file slage click Load and load that table definition. On the Columns...
by ray.wurlod
Thu Jan 25, 2007 3:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Modify Schema Name in OCI9
Replies: 4
Views: 1619

That is, include a job parameter reference as the schema name in the Table Name field. Make sure there is a job parameter of that name.
by ray.wurlod
Thu Jan 25, 2007 3:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: NEWBIE: check string value
Replies: 1
Views: 855

You have two output links, one the the table, the other to the collector. The second has no constraint expression at all, since all rows are sent to the collector. The first has a constraint expression that tests whether a job parameter has the value "Y". Build this constraint expression with the ex...
by ray.wurlod
Thu Jan 25, 2007 2:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Type 2 SCD with duplicates in input
Replies: 1
Views: 1232

Pre-process your new data through a Sort stage, getting it to add a key change column. Then process the data as if there were no duplicates through the Compare stage - I assume you're using a Compare stage - with the key change column NOT being a change column. Then, you need to filter the output bo...
by ray.wurlod
Thu Jan 25, 2007 2:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how output data are to be set as fixed length
Replies: 3
Views: 1479

Typically fixed width data files do not include quote characters; if you want these you will need to transform your data so that they have quotes - since reading quoted delimited fields from source will strip the quotes. The transformation will need to be such as to pad the string and then surround ...
by ray.wurlod
Thu Jan 25, 2007 2:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: IPC,LINK COLLECTOR
Replies: 3
Views: 1232

MPP is automatically excluded since these are stages in server jobs, which can only ever run on one machine. SMP is not necessary either, because server jobs can run on uniprocessor systems.
by ray.wurlod
Thu Jan 25, 2007 2:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Custom Stage in Windows
Replies: 11
Views: 4512

<stings.h> ought not to be found. Try <string.h> or <strings.h> (depending on your actual header file name). Compiler options are required to tell the compiler where the header files are.