Search found 151 matches

by agpt
Tue Jun 15, 2010 11:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job does not see the change in Shared container
Replies: 8
Views: 2869

Hongqing Tang wrote:That issue started last week. Today, I went back and tried it again, I am having the same issue.
Are you sure you are the only user of this shared container?
by agpt
Tue Jun 15, 2010 11:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job compilation takes about 4 hrs
Replies: 17
Views: 6201

ArndW wrote:datisaq - I use the windows taskmgr to see the client PC usage and have sometimes seen the local CPU and particularly the I/O go up significantly during compiles, this is because parts of the compilat ...
What does "datisaq" means here :?
by agpt
Mon Jun 14, 2010 10:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: REG SCD 1 IN Px
Replies: 5
Views: 1785

depends on which version of data stage you are.

if you are on 8.1 , you can use in built SCD stage.
by agpt
Mon Jun 14, 2010 10:48 pm
Forum: General
Topic: DS Client Error
Replies: 7
Views: 9930

In some companies, they do run patches, mostly weekly, to remove the softwares from the machines which are not under the list of the aunthorized softwares for them yet. We also had same kind of problem where in data stage version 7.5 was under company's approved list but version 8 wasn't. You need t...
by agpt
Sun Jun 13, 2010 2:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: View data of a particular node from a dataset
Replies: 7
Views: 2905

ray.wurlod wrote:Tools > Data Set Management in Designer.

You can also set the Peek stage to capture only from particular nodes. (I can't recall whether the same capability is available from the data browser, t ...
Thanks Ray!!!!
by agpt
Sat Jun 12, 2010 11:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: View data of a particular node from a dataset
Replies: 7
Views: 2905

anbu wrote:Open Show Data Window in Data Management tool and select the partition you want to see the data

Anbu,

Can you please tell me what this data management tool? Do we need to get it installed separately?
by agpt
Fri Jun 11, 2010 9:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Delimiter for field warning while reading sequential file
Replies: 16
Views: 24368

Delimiter definedis Comma , and no rows are getting rejected My file has total 97 fields and first row is field name and same field name are values for that column .. for eg : G_QVVLBS,G_QVVIQT,G_QVVALT,G_AVV100 G_QVVLBS,G_QVVIQT,G_QVVALT,G_AVV100 1st row is name and 2nd row is values for that fiel...
by agpt
Fri Jun 11, 2010 9:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Join two tables
Replies: 2
Views: 1338

you marked this topic as resolved. Can you please tell us what exactly you did?
by agpt
Thu Jun 10, 2010 10:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to eliminate left & right side zero's
Replies: 7
Views: 3605

Re: how to elimenate left & right side zero's

make two stage variables first would remove leading zeros and second trailing: stage1 = trim(input,"0","L") stage2 = trim(stage1,"0","R") Here stage 2 is going to be your output variable. You don't need 2 fuctions to do that, just use trim with option 'B'. tr...
by agpt
Thu Jun 10, 2010 10:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to eliminate left & right side zero's
Replies: 7
Views: 3605

Re: how to elimenate left & right side zero's

my i/p like this column 001 102 1300 00102 required o/p like this column 1 102 13 102 how to achive this one make two stage variables first would remove leading zeros and second trailing: stage1 = trim(input,"0","L") stage2 = trim(stage1,"0","R") Here stage 2...
by agpt
Thu Jun 10, 2010 10:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Assignment of a NULL value to a NOT NULL column
Replies: 7
Views: 5278

sreddy wrote:Thank you for All

I fixed this issue.
Please specify the approach which you used exactly and mark the topic as resolved. :)
by agpt
Thu Jun 10, 2010 7:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error while loading data to DB2 table
Replies: 8
Views: 7952

Error while loading data to DB2 table

Hi All, I am trying to load some data to DB2 table and getting the following error: main_program: Error loading "orchdb2op": Could not load "orchdb2op": 0509-022 Cannot load module /data/ds/Projects/IBM/InformationServer/Server/DSComponents/bin/orchdb2op.o. 0509-150 Dependent mod...
by agpt
Wed Jun 09, 2010 11:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reg. Date
Replies: 3
Views: 1511

if this is a date... use MonthFromDate and YearFromDate function to get values of yyyy and mm and use the function which arndw suggested.
by agpt
Wed Jun 09, 2010 11:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Join behaves strangely
Replies: 20
Views: 8084

What partitioning are you using on the inputs of the Join stage? ... At the beginning we had the "Same" partitionning, but as I sad before, we tried everything even passing the Join Stage in Sequential with both sides sorted. but you only said "The problem is that some of the records...
by agpt
Tue Jun 08, 2010 12:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Creating a build stage to transpose
Replies: 3
Views: 1572

Creating a build stage to transpose

Hi All,

I want to create a custom stage which can perform function of transforming. Can anybody guide me how to accomplish it?