If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > DB2 > Performance Issues with INTEGER vs. SMALLINT

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 11-04-08, 17:12
Yadrif Yadrif is offline
Registered User
 
Join Date: Sep 2008
Posts: 7
Performance Issues with INTEGER vs. SMALLINT

Is there any performance difference between using an INTEGER vs. a SMALLINT datatype? Or is it just space requirements?

I'd like to use INTEGER just to be sure the datatype is large enough but need to be concerned with anything that can cause performance problems.

I'm using DB v9.1 on Linux.

Thanks for the advice.
Reply With Quote
  #2 (permalink)  
Old 11-05-08, 02:31
Peter.Vanroose Peter.Vanroose is offline
Registered User
 
Join Date: Sep 2004
Location: Belgium
Posts: 1,079
Quote:
Originally Posted by Yadrif
Is there any performance difference between using an INTEGER vs. a SMALLINT datatype?
Depends on where and how you're using it, of course.
If you need to store or pass numbers larger than 3267, the choice is clear.
If you have to transfer large amounts of small numbers, the choice should also be clear. Even CHAR(1) could be a choice then!
Computationally, there will probably be little or no difference between manipulating INTs or SMALLINTs since registers are always either 4 or 8 bytes nowadays. Or is SMALLINT arithmetic still done in 2-byte registers?
__________________
--_Peter Vanroose,
__IBM Certified Database Administrator, DB2 9 for z/OS
__IBM Certified Application Developer
__ABIS Training and Consulting
__http://www.abis.be/
Reply With Quote
  #3 (permalink)  
Old 11-05-08, 06:01
stolze stolze is offline
Registered User
 
Join Date: Jan 2007
Location: Jena, Germany
Posts: 2,662
Something else to consider is the maximum row length.
__________________
Knut Stolze
IBM DB2 Analytics Accelerator
IBM Germany Research & Development
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On