Search found 22 matches

by Obiwon666
Fri Feb 10, 2017 2:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Drop column defined as intact
Replies: 6
Views: 3741

Yes it works but It doesn't fit my needs.

I use local message handler to solve it. :roll:
by Obiwon666
Wed Jan 04, 2017 3:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Drop column defined as intact
Replies: 6
Views: 3741

I forgot to mention, yes RCP is activated.

Main idea is to keep these special columns even KEEP specification. (developpers doesn't have to know that kinds of columns exist).
by Obiwon666
Thu Dec 29, 2016 9:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Drop column defined as intact
Replies: 6
Views: 3741

With KEEP spec, the unwanted "Techs_Cols" still exists in output dataset.

I'm afraid that the only solution is to use message handler. :cry:
by Obiwon666
Mon Dec 26, 2016 10:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Drop column defined as intact
Replies: 6
Views: 3741

Drop column defined as intact

Hi datastage community, I have currently an issue when manipulating record defined as 'intact' when subrecords have "drop" property. Schema: record ( ID_TECH: nullable decimal[4,0]; COL_1:nullable string; COL_2:nullable string; Techs_Cols: record {final_delim=none, delim=",", int...
by Obiwon666
Thu Jun 07, 2012 11:38 am
Forum: General
Topic: 8.1 Problem with Oracle Connector GUI (properties panel)
Replies: 13
Views: 8285

I've got the same pb recently, it was a conflict with dll called "ExGrid.dll".

In my case.
The software HP Quality Center load his own version of this libray and so DataStage Client use it and show a weird pane.
by Obiwon666
Wed Mar 21, 2012 2:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Is the Char function valid
Replies: 2
Views: 2045

The job don't compile with this call, the stage transformer doesn't want this. Do i have to add something to call the char function with two arguments?

So i find an workaround for my business case which consist to do the same thing in database when i extract data, directly in the query.
by Obiwon666
Wed Mar 14, 2012 12:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Single Quote in Job Parameter
Replies: 6
Views: 3908

IN which component do you use the job parameter ?
In a stage transformer, row generator, ?
by Obiwon666
Wed Mar 14, 2012 12:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Is the Char function valid
Replies: 2
Views: 2045

Is the Char function valid

Hi everyone, I've got in a string column a weird character (0x96, 150 in decimal) which cause some trouble, so i try to eliminate this by using Convert function in a stage transformer. I define a derivation like this: final_column=Convert(Char(150),"-",original_column) The result string(fi...
by Obiwon666
Wed Feb 15, 2012 1:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: some jobs not running after upgrading to IS 8.1 from 8.0.1
Replies: 4
Views: 11042

May be is the number warning message allowed before datastage send abort signal no? Try to set old value when your run the job (no limit ?) or try to handle all your not null columns (better solution). A job must be finished with status "finished ok" not "finished ok with warning(s)&q...
by Obiwon666
Wed Feb 15, 2012 1:04 pm
Forum: General
Topic: Know link type in a job per stage
Replies: 6
Views: 2776

RCP is disabled at project level.

I do some test with server job it doesn't work.(DSGetLinkMetaData gives no information with job server).
:roll:
by Obiwon666
Wed Feb 08, 2012 10:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Decode the image
Replies: 4
Views: 2429

kandyshandy wrote:encoding & decoding images in DataStage? :shock:
+1

Binary of image is included in the xml flow?
by Obiwon666
Wed Feb 08, 2012 9:46 am
Forum: General
Topic: How do you remove a folder with spaces in the name?
Replies: 17
Views: 12099

Have you try DS.CHECKER command ?
by Obiwon666
Wed Feb 08, 2012 9:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Import consumed only x bytes warning
Replies: 5
Views: 7551

It seems that your different format in your file (fixe format?).

First format use 40 byte and aonther one uses only 27 bytes.

Try to separate different format in import step.
by Obiwon666
Wed Feb 08, 2012 9:00 am
Forum: General
Topic: Know link type in a job per stage
Replies: 6
Views: 2776

@kandyshandy: My goal is to control the naming convention precisely. ;) I forgot to write that i used the method "listlinktype = DSGetStageInfo (hJob, stagename, DSJ.LINKTYPES)" first. I can only deduce this: linktype value = 1: input stream linktype value = 2: reference stream linktype va...
by Obiwon666
Tue Feb 07, 2012 2:33 pm
Forum: General
Topic: Know link type in a job per stage
Replies: 6
Views: 2776

Know link type in a job per stage

Hi everyone, I work on a job server (BASIC code) to scan all jobs in a projectto get information about datastage design. For each job i want to know names of stages presents, names of the links, etc.. I'm really close to get all information i want but i have a trouble with link. I don't know how to ...