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 7670703
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T15:52:59+00:00 2026-05-31T15:52:59+00:00

Will using BigInt singed slow down my database considerably compared to a medium int.

  • 0

Will using BigInt singed slow down my database considerably compared to a medium int. and if so how can I calculate the slow date rate of my database using it?

  • 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-05-31T15:53:01+00:00Added an answer on May 31, 2026 at 3:53 pm

    Let me put it to you this way…

    When you expand a row using ALTER TABLE ... ROW_FORMAT-Fixed in MyISAM, a table will grow 80-100% but you get a 20-25% peformance boost. Why?

    The book MySQL Database Design and Tuning recommends using ROW_FORMAT=FIXED on pages 72,73. This will internally convert all VARCHAR fields to CHAR. It will make the MyISAM table larger, but executed SELECTs against it will be much faster. I can personally attest to this. I once had a table that was 1.9GB. I changed the format with ALTER TABLE tblname ROW_FORMAT=FIXED. The table ended up 3.7GB. The speed of the SELECTs against it was 20-25% faster without improving or changing anything else.

    This does not have to do with numbers. Yet, in theory (and I have tried this as well), using smaller integer formats would speed up database internal operations. Think of it. Smaller integers may save on byte alignment issues in tables, indexes, and even caching.

    To trust what I just said, you have to try it out on a staging server using a copy of production data. Just convert the appropriate columns based on this:

    • Any int field <= 255, use TINYINT UNSIGNED
    • Any int field <= 65535, use SMALLINT UNSIGNED
    • Any int field <= 16777215, use MEDIUMINT UNSIGNED
    • Any int field <= 4294967295, use INT UNSIGNED

    The result ?

    • Smaller MyISAM tables (.MYD and .MYI files)
    • Smaller InnoDB tables (.ibd file)
    • More room for indexes in the MyISAM Key Cache
    • More room for data and indexes in the InnoDB Buffer Pool

    Give it a Try !!!

    CAVEAT

    I am not referring to the app code, only server-sde operation.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Will using PinchMedia and including Core Location frameworks make it unusable on the iPod
Will using GetComInterfaceForObject and passing the returned IntPtr to unmanaged code keep the managed
I will be using jQuery's functionality to create portlet widgets for my web application
I am a student who will be using C++ next quarter. I really enjoyed
I have a php file which I will be using as exclusively as an
I am working on a project which will be using large datasets (both 2D
I'm working on an app that will be using https, but we wanted to
I'm working on a website that will be using Facebook Connect to authenticate users.
I have an iPhone app where I will be using it as a template
I have an array of countries that I will be using in a select

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.