Search found 10 matches

by goma
Wed Apr 06, 2005 4:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage Command Language (DS shell)
Replies: 8
Views: 5136

Not sure about exact version, but you can reference to universe user reference in http://www-306.ibm.com/software/data/u2/pubs/library/.
by goma
Mon Apr 04, 2005 11:04 pm
Forum: IBM QualityStage
Topic: Multilingual files processing
Replies: 2
Views: 3060

At least you need to rule-set for handling particular language. Thus if you want to handle chinese then rule-set for chinese, thai for rule-set for thai and so on.
by goma
Mon Apr 04, 2005 10:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SEquential file errors
Replies: 2
Views: 2084

Suppose you have one columen specified char (5). The data shoud be like below.
XXXXX/n
but the actual data is XXXXX_..... (_is blank ) so operator find blank rather than /n it shoud be.
by goma
Fri Apr 01, 2005 3:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Handling Multi-lingual data
Replies: 10
Views: 5897

What exactly do you want to do against data? Do you want to change code page? Do you want to substring/concatenate data in some fields? What you want to do is just transform, say Field A in source to Field B in target, and suppose your target database is utf-8, non-nls setting seems like work since ...
by goma
Fri Apr 01, 2005 2:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Handling Multi-lingual data
Replies: 10
Views: 5897

1. Will I have to increase my field sizes where non-ASCII characters are expected? e.g. if a field is varchar(50) and I expect Chinese characters, do I have to allot atleast 150 bytes for it? I think it depends on DB implementation, some DB specifys length in byte, the other is charactor length. You...
by goma
Thu Mar 31, 2005 7:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: PATH search failure
Replies: 10
Views: 5423

It would be good idea to confirm your environment variable setting is correct by using env command with ExecDos in job before routine.
by goma
Thu Mar 31, 2005 6:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Stopped/started DS, RPC daemon problem
Replies: 13
Views: 7409

Oh, yes. Thanks roy,

it is necessary to check at least phantom and dsapi_slave process, are the y all to check?
by goma
Thu Mar 31, 2005 6:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help!! I've lost my poroject
Replies: 8
Views: 4068

If above procedure for new licence to update does not work, it is worth to try unix level back-up for the project directory, then installing new DataStage in new box. Next creating a project with same name as previous one, then replace entire project directory wich back-up. I am not sure it always w...
by goma
Thu Mar 31, 2005 3:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage PX Config file setup error
Replies: 5
Views: 5684

I have got similar message after importing job from the dev box to production box. It is caused by different version of C++ compiler between dev and prod box. After compiling job, it become ok.
by goma
Thu Mar 31, 2005 2:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Stopped/started DS, RPC daemon problem
Replies: 13
Views: 7409

check ps before starting uv.

It would be good idea to insert check logic for ds process rather than waiting for 30 second. bin/uv -admin -stop (wait 30 seconds) bin/uv -admin -start the above script become like this. bin/uv -admin -stop ps -ef | grep phantom > temp.ps ps -ef | grep dsapi or dsslave >> temp.ps << count the recor...