Search found 15603 matches

by ArndW
Wed Nov 29, 2006 7:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: where do i find Basic transformer
Replies: 5
Views: 1412

You need to follow the directions: In the designer: 1. right mouse click on the Pallette text at the top of the pallette box 2. choose "customize Pallette" 3. In the top-left Repository window, select Parallel -> Processing -> Basic Transformer 4. after activating, click on the right arrow to add it...
by ArndW
Wed Nov 29, 2006 7:46 am
Forum: Site/Forum
Topic: Non Business content
Replies: 6
Views: 3372

Rameshrr3, I think that solution is not to stop DSXchange from linking to external sites, since it doesn't seem to affect the 10,000+ other users, including myself who is at a site that severely restricts internet access. Perhaps you could see that your censor software acts less choosy? When followi...
by ArndW
Wed Nov 29, 2006 7:34 am
Forum: General
Topic: CIDocData operator=(char): String too long for field .
Replies: 3
Views: 2263

Shrinivas, please post in the appropriate forum - either Server or PX for this question (although it does look like PX). What is your problem with the error? If you have a column defined as char(16) and try to put the varchar text "Hello World, my name is Arnd" into it you will get this error message.
by ArndW
Wed Nov 29, 2006 3:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Age of a person
Replies: 10
Views: 4362

Suresh - He might have, but the PX compiler would have balked at that, even if the red highlighting in the transform stage wouldn't have given it away :) [but in Server that would have worked just fine!]
by ArndW
Wed Nov 29, 2006 3:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Convert Fixed Bin/Fixed Dec Data
Replies: 4
Views: 1299

Koti, it is easy since the conversion is done automatically. You define your input file's columns and datatypes in the stage, then you can output from that stage to a flat file or database of your choice. If you have any doubts or questions you can look at the documentation for the Complex Flat File...
by ArndW
Wed Nov 29, 2006 2:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: &PH& entries
Replies: 2
Views: 713

Maintenance of the &PH& directory log files is/was an oversight in DataStage since version 1. You can remove the contents from UNIX, so a simple script could remove any files older than a week or two.
by ArndW
Wed Nov 29, 2006 1:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: fixed widht file problem
Replies: 5
Views: 1763

You need to know your column and line separators and the data types (and max lengths) for all your columns. Put those into the stage and you will be all set.
by ArndW
Wed Nov 29, 2006 1:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Failed to delete old project
Replies: 2
Views: 1006

Does the project still show up in the drop-down list of projects in any of the client tools? If it is no longer in the UV.ACCOUNT file then it will not be in that list and if the directory still remains you can delete it. This problem can occur when you have had a user create or compile or reset a j...
by ArndW
Wed Nov 29, 2006 1:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Trim Function in Modify Stage
Replies: 21
Views: 12414

The modify stage doesn't allow combining commands :(
by ArndW
Tue Nov 28, 2006 12:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Having problem with Column having length of 1000
Replies: 11
Views: 4216

How long are the columns on the source side? 1 or 999? Does the length come back as "0" or perhaps as null? Do these columns contain binary data? Are you using a 1-node configuration file or a multiple node one (just asking in order to cover all the possibilities)? If you know Server job programming...
by ArndW
Tue Nov 28, 2006 12:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Having problem with Column having length of 1000
Replies: 11
Views: 4216

Add a new column that is derived from "LEN(YourBigColumnName)" and see what is reported. VarChar(1000) is nothing special for DataStage so the error most likely lies elsewhere. How long is the data in those columns that show up as empty?
by ArndW
Tue Nov 28, 2006 12:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Having problem with Column having length of 1000
Replies: 11
Views: 4216

A Column length of 1000 is nothing particularly long. From you description you are missing 3 records, not colums; or did I misunderstand? Could you post any warnings or error messages you are getting so that it might be easier to understand the issue?
by ArndW
Tue Nov 28, 2006 7:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Node Problem in the job
Replies: 2
Views: 682

You mentioned a commit frequency of 500. If you change that to a commit frequency of 1 and run the job with a 4-way configuration, does the error disappear, remain the same, or change?
by ArndW
Tue Nov 28, 2006 5:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Node Problem in the job
Replies: 2
Views: 657

What have you specified as your commit frequency?
by ArndW
Mon Nov 27, 2006 10:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Question about system timestamp in oracle table
Replies: 3
Views: 1124

DataStage "DATE" conversions only cover the date portion and not the time. You will need to specify

Code: Select all

OCONV(DATE(),'D4YMD[4,2,2]'):' ':OCONV(TIME(),'MTS')
. That will give you the time accurate to the nearest second without milliseconds.