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

  • Home
  • SEARCH
  • 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 8653627
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T14:35:22+00:00 2026-06-12T14:35:22+00:00

My application interacts with an Oracle database in which a table has 1 million

  • 0

My application interacts with an Oracle database in which a table has 1 million records. The problem is:

In that table we have a column for numeric integer types.We want to store float values (2 digits).We could do that by multiplying with 100 (from the application) and store them in that column or modify the column data type.The question is :

What takes less time?
The alter table modify column or the query (update table set column = 100*val).

  • 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-12T14:35:23+00:00Added an answer on June 12, 2026 at 2:35 pm

    A NUMBER in Oracle has no intrinsic “format”, i.e. its internal representation will not depend upon its precision or scale. The NUMBER 123456 for example will be represented internally the same way if it is declared as a NUMBER(9,2) or INTEGER:

    SQL> SELECT dump(CAST(123456 AS INTEGER)) int,
      2         dump(CAST(123456 AS NUMBER(9,2))) num
      3    FROM dual;
    
    INT                       NUM
    ------------------------- --------------------
    Typ=2 Len=4: 195,13,35,57 Typ=2 Len=4: 195,13,35,57                    
    

    The only difference in a column between an INTEGER(7) and a NUMBER(9,2) is that the INTEGER(7) has a stronger check constraint. Both columns will represent the data internally in the exact same way.

    This is why you can increase the precision of your column of a non-empty column without problem, and the ALTER TABLE will only modify the metadata (dictionary tables) and thus should be instant with very little redo.

    SQL> create table test (id number(7));
    
    Table created.
    
    SQL> insert into test values (123456);
    
    1 row created.
    
    SQL> alter table test modify (id number(9,2));
    
    Table altered.
    
    SQL> select * from test;
    
            ID
    ----------
        123456
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

We have an application written in C language which interacts with Oracle database. This
I have a C# service application which interacts with a database. It was recently
I have a Java web application that has Informix as its back end database.
I have a DESKTOP application which interacts with a web service through their RESTful
I have a Java application which interacts with native code using JNI. The native
I'm building a perl application that interacts with a PostgreSQL database via the DBD::Pg
When developing an application which mostly interacts with a database, what is a good
I've a SmartGWT application which interacts with a mysql database using rpc services. Suppose
I have written a simple Java application that interacts with multiple instances of itself
I have an ASP.Net web application, which interacts with .Net Remoting application server. As

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.