Portal | IBM Manuals | Downloads | Products | Refer | Info | Programs | JCLs | Forum Rules*| Site Map | Mainframe CD 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index
 
Register
 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index FAQ Search Memberlist Usergroups Profile Log in to check your private messages Log in
 
Result of decimal multiplication may cause overflow

 
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> DB2
Author Message
bhaskar_kanteti

Active User


Joined: 01 Feb 2007
Posts: 85
Location: India

PostPosted: Thu Aug 21, 2008 10:01 am    Post subject: Result of decimal multiplication may cause overflow
Reply with quote

Hi,

In my STORED PROC i had fetch query as follows:

Code:

EXEC SQL                                       
                                               
    DECLARE CSR1 CURSOR WITH RETURN FOR
                                               
    SELECT DISTINCT                             
         DCLGEN1.BRAND                     
       ,(CASE                                         
        WHEN DCLGEN1.ACCOUNT_TYPE = 'XX' THEN   
        DCLGEN2.AMOUNT                       
        ELSE                                         
        (CASE                                         
        WHEN(DCLGEN1.AMOUNT1 + DCLGEN1.AMOUNT2
              >= 0                                   
        THEN 0                                       
        ELSE                                         
        ((DCLGEN1.AMOUNT1 + DCLGEN1.AMOUNT2)
         *-1.0)                                       
        END)END) AS AMOUNT                   
        .............


In the above sql there is an arthematic calculation as
(DCLGEN1.AMOUNT1 + DCLGEN1.AMOUNT2) * -1.0

When we bind the element i am getting the following warning.

Code:

DSNX104I  -DOA1 BIND SQL WARNING
          USING GRP AUTHORITY
          PLAN=(NOT APPLICABLE)
          DBRM=ZKCAFQ07
          STATEMENT=152
          THE RESULT OF DECIMAL MULTIPLICATION
          MAY CAUSE OVERFLOW


What changes to be done for this arthematic calculation inorder not to get this warning.
Back to top
View user's profile Send private message
References
dbzTHEdinosauer

Senior Member


Joined: 20 Oct 2006
Posts: 1618
Location: germany

PostPosted: Thu Aug 21, 2008 10:26 am    Post subject:
Reply with quote

you might look at the scalar built-in function MULTIPLY_ALT. It might apply.
Back to top
View user's profile Send private message
bhaskar_kanteti

Active User


Joined: 01 Feb 2007
Posts: 85
Location: India

PostPosted: Thu Aug 21, 2008 11:02 am    Post subject: Reply to: Result of decimal multiplication may cause overflo
Reply with quote

Hi Dick Brenholtz,

MULTIPLY_ALT worked for my requirement.
Thank you so much.
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> DB2 All times are GMT + 6 Hours
Page 1 of 1