Search found 9 matches

by weiyi_will
Tue Nov 17, 2015 7:52 pm
Forum: General
Topic: How to you promote jobs from Dev to Prod?
Replies: 1
Views: 1789

Re: How to you promote jobs from Dev to Prod?

In my current project , we export separate xml file for each changed job and then submit to source control. We write a autobuild script to deploy the changed jobs since last build. But this has be done on Windows for it seems there is no cmd can be used to import xml format in AIX.
by weiyi_will
Sun Jul 26, 2015 6:47 pm
Forum: IBM QualityStage
Topic: NLS Map for Special Characters
Replies: 9
Views: 10272

Re: NLS Map for Special Characters

Did you try saving the text files as UTF-8 manually and set NLS as UTF on JOB property and set datatype as NvarChar on column definition?
by weiyi_will
Sun Jul 26, 2015 6:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to suppress zero for decimal field in RCP enabled jobs
Replies: 9
Views: 8555

Yes,use varchar instead of decimal on the DB connector stage, will have no leading zero
by weiyi_will
Sun Jun 28, 2015 11:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Different results in 8.7 job than 8.1 version job
Replies: 9
Views: 6653

How are you sorting? Best use a sort stage and explicitly specify "Stable Sort = true" to remove the non-deterministic part of your problem. Since the data A,B,C,1 A,B,D,2 is only sorted on "A" and "B" the record order when not using a stable sort might be different. A...
by weiyi_will
Sun Jun 28, 2015 8:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Portugese character issue
Replies: 4
Views: 2439

Re: Portugese character issue

What's encoding on Oracle side? It may work if you set NLS to UTF-8 and update this field toNvarchar.
by weiyi_will
Fri Jun 26, 2015 1:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: datastage job having high start up time
Replies: 8
Views: 5997

I ever also meet the case that it include execution time of after SQL as start up time.
by weiyi_will
Fri Jun 26, 2015 1:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: extra comma in csv file
Replies: 3
Views: 3141

ray.wurlod wrote:Best is to get the provider of the file to give you a correct file. ...
Agree!
by weiyi_will
Fri Jun 26, 2015 1:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Removing leading '0' while decimal to varchar conversion
Replies: 4
Views: 3395

Re: Removing leading '0' while decimal to varchar conversion

I ever avoided the leading zero issue by use VarChar from reading data from DB.
by weiyi_will
Fri Jun 26, 2015 1:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Special character issue while writing into sequential file
Replies: 2
Views: 4287

Re: Special character issue while writing into sequential fi

Did you test with setting NLS of JOB to UTF8 and column to Nvarchar (or varChar with Unicode extend)?