Page 1 of 1

Bugs for Version 7.x

Posted: Mon Oct 25, 2004 3:21 pm
by Billyqing
This post is for questioning the bugs in Version 7.x.

Has anyone experienced the bugs using DS 7.x server edition?


If so, please list anyone and the best practice to prevent it occur.

I am going to update DS 6.x to DS 7.x. Before doing that, one task is to

create a plan for how to effectively using DS and prevent the bugs happen during the usage of DS.


Appreciate for any response.

Thanks.

Posted: Wed Oct 27, 2004 7:17 pm
by chulett
Which specific version of 7 are you planning on upgrading to? It would help to target any answers you get.

Also note that there is always a list of 'Known Issues' in the readme that ships with the product. If you have the media in hand, check it out.

Posted: Wed Oct 27, 2004 8:52 pm
by ray.wurlod
Bugs is overrated. Daffy had more personality, while DataStage developers should have most empathy for Wile E Coyote (the business analysts are represented by Acme Corporation). :lol:

Posted: Thu Oct 28, 2004 7:26 am
by chulett
And Ray is the Road Runner.

Not here one second and then - with a whoosh and a 'Meep Meep!' - he's here, answered 20 questions and then gone. :wink:

Posted: Thu Oct 28, 2004 3:13 pm
by ray.wurlod
I thought "Whoosh!" was the sound deadlines make as they rush by! :lol:

Posted: Thu Oct 28, 2004 8:03 pm
by aartlett
"Whoosh" is the sound Willi E makes when falling off a cliff. Bugs has always had more personality the Daffy so there :). Managers would have to be the martian (the one erroneously referred to as Marvin) who would blow up a planet because it blocks his view of Venus and throws 10's of '000s of troops to try and stop one lone wabbit.

I don't know who Yosemite will be ... any ideas?



A warner bros addict.

Posted: Thu Oct 28, 2004 10:50 pm
by chulett
Since this thread has now been dragged waaay off-topic, why "erroneously referred to as Marvin"? :? I have a basement crammed full of Marvin the Martian collectables from Warner Brothers before the Studio Stores were shut down.

Not fixed in version 7.5 Yet

Posted: Fri Oct 29, 2004 6:18 am
by larryoceanview
Topic:
INT() function returning incorrect values
Product: DataStage
Release: 7.0
Date Entered: 06/16/2004
Fixed in Release: 7.1r2
Date Closed:
Full Description:
The INT(arg) function returns the previous value
of the INT function if arg is NULL. eg

INT(1234.50) = 1234
INT(@NULL) = 1234

When INT has not previously returned a value the
function returns 0. The functionality as
documented should return @NULL.
Resolution:
Workaound Provided:
Edit derivation to check for @NULL
If ISNULL(link.col) then "NULL" else INT(link.col)