Search found 53125 matches

by ray.wurlod
Mon Mar 31, 2008 3:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: UV Stage-SQLSTATE=S1000, DBMS.CODE=950088
Replies: 14
Views: 7143

There's no columns there called "column1", "column2", etc. Like with any other database you must use the column names defined for the table. Also, these must coincide in number, order and data type with the columns defined in your job design. SELECT DEBT_INSTRUMENT_REPAYMENT_SCHED, MINIMUM_MATURITY,...
by ray.wurlod
Mon Mar 31, 2008 3:07 pm
Forum: General
Topic: SAPBW Load PACK and its performance.
Replies: 6
Views: 1798

What do you believe your alternative is?
by ray.wurlod
Mon Mar 31, 2008 3:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Cannot login on DataStage Designer, hangs
Replies: 5
Views: 3385

Welcome aboard. :D You are going to need to provide rather more information than that. For example, can you connect using the other clients? What connection parameters have you specified - in particular which port number? Right now your question is in the "my car won't go - can you please help?" cla...
by ray.wurlod
Mon Mar 31, 2008 3:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Generic Stage - Is there any overhead in using genric stage?
Replies: 1
Views: 764

What have you read about the Generic stage? What do you understand that it does?

There is "an overhead" of using anything that consumes CPU cycles. Such is life in the DataStage world.
by ray.wurlod
Mon Mar 31, 2008 3:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: UV Stage-SQLSTATE=S1000, DBMS.CODE=950088
Replies: 14
Views: 7143

I need you to post the dictionary listing of the UV table. To get this, execute the command

Code: Select all

LIST DICT tablename

Either the table name itself, or one or more of the column names (or both), just isn't working.
by ray.wurlod
Mon Mar 31, 2008 3:13 am
Forum: General
Topic: Extrac date from input filenames and proccess accordingly
Replies: 2
Views: 1100

The file name is a property (one column returned by) the Folder stage. You can extract the date from that in the first Transformer stage, put it into another column being transmitted through the job, and use that value as a filter in the second Transformer stage. Or you could process the files one a...
by ray.wurlod
Mon Mar 31, 2008 1:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Upper Limit for Integer
Replies: 2
Views: 1187

The upper limit of BigInt should be 9,223,372,036,854,775,807. Where did you find that it was different? The upper limit of TinyInt (int8) is 127 (2^(8-1)-1). The upper limit of SmallInt (int16) is 32,767 (2^(16-1)-1). The upper limit of Integer (int32) is 2,147,483,647 (2^(32-1)-1). The upper limit...
by ray.wurlod
Mon Mar 31, 2008 1:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: user defined stage
Replies: 3
Views: 1051

Probably. A half-way decent trainer, for example. What don't you understand about what's in the manual? For that matter, which of the three different kinds of user-defined stages did you have in mind? Or do you want to create a brand-new plug-in stage that does not yet exist anywhere in the product?
by ray.wurlod
Mon Mar 31, 2008 1:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Stop a Parallel job
Replies: 5
Views: 1757

Perhaps Pavan needs a new nick?
by ray.wurlod
Mon Mar 31, 2008 12:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Records going to peek stage........
Replies: 27
Views: 6606

Did you mean ORD_I = '0009000311_______________________ ' ?
by ray.wurlod
Mon Mar 31, 2008 12:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Write Job Log to a new file
Replies: 4
Views: 1344

I would not have given it to you if it could not be used. However, I did not intend it to be used within a job at all; instead, in the generation of the job parameter LogFileName (for example) in a job sequence. "RT_LOG" : Trim(Trans("DS_JOBS",JobName,5,"X")...
by ray.wurlod
Sun Mar 30, 2008 10:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: env problem
Replies: 3
Views: 862

What is different between dev and QA environments? Look very carefully - something is different, obviously.
by ray.wurlod
Sun Mar 30, 2008 10:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dsjob (-jobinfo works, but -run does not)
Replies: 30
Views: 7894

Then make sure that they are all in the operating system group that is associated with objects in the project directory, and set their umask value to 002.
by ray.wurlod
Sun Mar 30, 2008 10:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Write Job Log to a new file
Replies: 4
Views: 1344

Why? And do "they" (who generated the requirement) require that the log continue to be preserved in a database table in the DataStage repository database? It's easy to do - you can create another DataStage job to do it. You will need to create a job sequence that gets the job number from DS_JOBS, ge...
by ray.wurlod
Sun Mar 30, 2008 9:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to increase the number of nodes in Parallel Job
Replies: 3
Views: 1371

This is as documented for the Oracle Enterprise stage. If you specify a Partition Table property it will execute in parallel provided that the table is appropriately partitioned.