How to decide optimum type

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • zaferaydin
    New Member
    • Aug 2009
    • 9

    How to decide optimum type

    Hi,
    I use sql server 2005. I want to store values into a field. The values are floating point numbers. A value in the field can only be in the format of #####.### like 12345,678.

    So i want to learn which type i should use for this field to provide better performans and memory improvement. Should i use decimal(5,3), float, number or anything else?
  • ck9663
    Recognized Expert Specialist
    • Jun 2007
    • 2878

    #2
    Depending to a number of factors, including max and min value of your content, the number of records of your table, to assess your table size, etc...

    You can start from here

    Good luck!!

    -- CK

    Comment

    Working...