Search found 7 matches

by rhale
Wed Apr 14, 2010 4:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Capture changes at file level
Replies: 7
Views: 4411

Re: Capture changes at file level

We solved this problem in 7.5.2 by writing a build op that did the comparisons. Our requirement was given a set of data in the format of any number of keys|any number of data columns|row stats such as update date and update user, produce a row of data for each column changed based on keys. The produ...
by rhale
Mon Apr 14, 2008 12:44 pm
Forum: General
Topic: Rename a project?
Replies: 2
Views: 5303

Rename a project?

Is there a way to rename a project without creating a new project and importing into it?

Thanks,
by rhale
Tue Mar 25, 2008 4:50 pm
Forum: General
Topic: Need some basic Information
Replies: 6
Views: 3988

Size & Effort Estimation Model for DataStage ETL Jobs

I found this article to be helpful in estimating development time for Datastage jobs.

http://blogs.ittoolbox.com/dw/soa/archi ... jobs-19406
by rhale
Mon Mar 03, 2008 6:10 pm
Forum: General
Topic: Do Informatica skills translate to Datastage skills?
Replies: 14
Views: 8204

So let me summarize and see if people agree or disagree. While general ETL, SQL and UNIX skills will transfer, specific Informatica skills may not and could be a hinderance. Therefore I should focus on candidates with strong general ETL, SQL and UNIX skills with the knowledge that I am going to have...
by rhale
Mon Mar 03, 2008 12:41 pm
Forum: General
Topic: Do Informatica skills translate to Datastage skills?
Replies: 14
Views: 8204

Do Informatica skills translate to Datastage skills?

I am interviewing people for a couple of positions in our company and our recuiters are having a hard time finding people with Datastage skills. So we are concidering interviewing people with ETL and Informatica skills that have express an interest in learning Datastage. And while I feel comfortable...
by rhale
Thu Feb 28, 2008 5:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Is it possible to only run certain stages in a job?
Replies: 5
Views: 2087

Occasionally we will develop jobs that have a reporting component and various inserts into our database. We will create an environment variable "Insert Data" and default that to no. When the job is run with the Insert Data variable set to no only the reports are generated. When the job is ...
by rhale
Wed Feb 13, 2008 5:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: why does Datastage not support Datatype INT8(serial8)
Replies: 20
Views: 11925

Casting of Serial8 to interger

How about SELECT o_abc_uid + 0 FROM tablename... Hopefully the arithmetic will perform a legal implicit CAST. If we cast serial8 to integer, it works fine. But the problem is the integer datatype stores whole numbers that range from -2,147,483,647 to 2,147,483,647, for 9 or 10 digits of precision. ...