Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7749757
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T11:07:09+00:00 2026-06-01T11:07:09+00:00

Error translated from Portuguese to English: Error data conversion or data format conversion. I

  • 0

Error translated from Portuguese to English: “Error data conversion or data format conversion.”

I have created a view:

MNUM DECIMAL 8,0                                


create view db.abc as select * from x where decimal(SUBSTR(MNUM, 2,6), 6, 0) = 57092

the mnum looks like 1057092 in this example, SUBSTR(MNUM, 2,6)=057092 and decimal(SUBSTR(MNUM, 2,6), 6, 0) should be = 57092 but throws that error!

thanks for any help

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-01T11:07:10+00:00Added an answer on June 1, 2026 at 11:07 am

    You can use the MOD function to get a part of the number instead of struggling with the char and numeric operations

    select decimal(SUBSTR(12345678, 2,6), 6, 0)
    from sysibm.sysdummy1;
    --returns 234567
    
    select mod(12345678 / 10, 1000000)
    from sysibm.sysdummy1;
    --returns 234567
    

    They return the same result, but the last one can be applied for number operations only. And, if you wat to secure your number to a decimal with 6 places, you can do this (if your DB2 version allows it):

    select digits(dec(mod(12345678 / 10, 1000000), 6))
    from sysibm.sysdummy1;
    

    Just to be sure that your operation can work, you should evaluate if the MNUM value is not null:

    digits(dec(mod(COALESCE(MNUM, 0) / 10, 1000000), 6))
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Error: Unable to read data from the transport connection: A blocking operation was interrupted
I have a dll that I created from a VB6 project that I am
I have created a class doing some jobs like GridView inherit from System.Web.UI.WebControls.WebControl. public
I have a strange error in an admin module created by the admin generator:
Error: End tag for 'optgroup' which is not finished. You have probably failed to
Error % javac StringTest.java StringTest.java:4: variable errorSoon might not have been initialized errorSoon[0] =
i have written the following code var resumeedit=(from t in db.Resumes where t.User.UserID==theUserID &&
I have the following LINQ query: var aKeyword = ACT; var results = from
I have to call a somewhat broken API from a Windows Phone 7 application.
I created a new email-message using Redemption-Data-Objects in C#. After calling Display(), the window

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.