473,378 Members | 1,122 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,378 software developers and data experts.

How many pre-decimal positions/integer digits has a DECimal (5,3) defined field ?

Does 5 represent the total numer of digits (including the fractional portion) or only the number of places
BEFORE the decimal point? Moreover does the number include the decimal point?

Are there differences between the databases servers ?

Peter

Nov 12 '05 #1
6 4487
pe****@gmx.net (Peter Blatt) wrote in message news:<ck*************@news.t-online.com>...
Does 5 represent the total numer of digits (including the fractional portion) or only the number of places
BEFORE the decimal point? Moreover does the number include the decimal point?

Are there differences between the databases servers ?

Peter

In Oracle, you would normally use the 'NUMBER(5,3)' declaration
instead of 'DECIMAL(5,3)'. It results in 5 digits being stored, with
the decimal place implied at position 3 - resulting in 6 'printer'
positions.

In Oracle, you can also specify 'NUMBER(5,-3)' which stores 5 digits
and puts the decimal 3 'zeros' after the last digit, giving you a
column or variable that displays 'thousands'.

Finally, in Oracle, the traditional internal representation of a
number is BCD - Binary Coded Decimal - with 2 digits per byte, up to
38 digits. Other variations, including IEEE Foating Point numerics
are possible as well.

If you need more details for the Oracle side, go to
http://docs.oracle.com for all online documentation, and look for the
SQL Reference Manual for the version(s) of interest. Excrutiating
detail is available in Chapter 1 under Datatypes.

Each RDBMS is exactly the same, only different. The 'only different'
is very subtle but significant enough that a generic application can
not swap out the back end without experienceing some negative impact -
frequently in scalability.

HTH
/Hans

BTW: comp.databases.oracle is a dead newsgroup, carried by only a few
ISPs. The question only needs to go to comp.database.oracle.misc (one
of the comp.databases.oracle.* heirarchy) as described in the Charter
available at http://orafaq.com
Nov 12 '05 #2
pe****@gmx.net (Peter Blatt) wrote in message news:<ck*************@news.t-online.com>...
Does 5 represent the total numer of digits (including the fractional portion) or only the number of places
BEFORE the decimal point? Moreover does the number include the decimal point?

Are there differences between the databases servers ?

Peter


This question is best asked in comp.databases which I added to the
list.
(but GOOGLE doesn't let me set the Follow-up: option)

IF you are asking about SQL databases, then the definition is
DECIMAL { (precision[,scale]) ]
where "precision is the total number of significant digits used to
express the number; the scale is the number of significant digits to
the right of the decimal point"

The quote is not directly from the standard. It's from SQL Instant
Reference published by SYBEX (C1993 so it is getting a little old).

For your last question, it seems database servers that claim to
support SQL would have to adhere to that definition.

HTH, both you and other readers.
Ed
Nov 12 '05 #3
pe****@gmx.net (Peter Blatt) wrote in message news:<ck*************@news.t-online.com>...
Does 5 represent the total numer of digits (including the fractional portion) or only the number of places
BEFORE the decimal point? Moreover does the number include the decimal point?

Are there differences between the databases servers ?

Peter


In Oracle:

5 represents total number of decimal digits, not including decimal point.
Nov 12 '05 #4
Alex Filonov wrote:
pe****@gmx.net (Peter Blatt) wrote in message
news:<ck*************@news.t-online.com>...
Does 5 represent the total numer of digits (including the fractional
portion) or only the number of places BEFORE the decimal point? Moreover
does the number include the decimal point?


According to the SQL standard (SQL99), subclause 4.5.1 (page 22) says:
-----------------
An exact numeric value has a precision and a scale. The precision is a
positive integer that determines the number of significant digits in a
particular radix (binary or decimal). The scale is a non-negative integer.
A scale of 0 (zero) indicates that the number is an integer. For a scale
of S, the exact numeric value is the integer value of the significant
digits multiplied by 10^(-s).
-----------------

That makes it absolutely clear that for SQL database systems the precision
(5 in the example above) is the total number of digits, including the
fractional portion and without the decimal character.

--
Knut Stolze
Information Integration
IBM Germany / University of Jena
Nov 12 '05 #5
> Each RDBMS is exactly the same, only different. The 'only different'
is very subtle but significant enough that a generic application can
not swap out the back end without experienceing some negative impact -
frequently in scalability.
This is why I prefer NUMERIC instead of DECIMAL.

Per ANSI SQL, for DECIMAL, the RDBMS is allowed you to give you a higher precision than you asked
for. NUMERIC is required to give you the precision you ask for.

In SQL Server, they are the same (they both gives you exactly what you ask for). But by using
NUMERIC, I would have a consistent behavior across products (assuming the other product adheres to
the ANSI SQL standard).

--
Tibor Karaszi, SQL Server MVP
http://www.karaszi.com/sqlserver/default.asp
http://www.solidqualitylearning.com/
"Hans" <fo******@gmail.com> wrote in message news:bd**************************@posting.google.c om... pe****@gmx.net (Peter Blatt) wrote in message news:<ck*************@news.t-online.com>...
Does 5 represent the total numer of digits (including the fractional portion) or only the number
of places
BEFORE the decimal point? Moreover does the number include the decimal point?

Are there differences between the databases servers ?

Peter

In Oracle, you would normally use the 'NUMBER(5,3)' declaration
instead of 'DECIMAL(5,3)'. It results in 5 digits being stored, with
the decimal place implied at position 3 - resulting in 6 'printer'
positions.

In Oracle, you can also specify 'NUMBER(5,-3)' which stores 5 digits
and puts the decimal 3 'zeros' after the last digit, giving you a
column or variable that displays 'thousands'.

Finally, in Oracle, the traditional internal representation of a
number is BCD - Binary Coded Decimal - with 2 digits per byte, up to
38 digits. Other variations, including IEEE Foating Point numerics
are possible as well.

If you need more details for the Oracle side, go to
http://docs.oracle.com for all online documentation, and look for the
SQL Reference Manual for the version(s) of interest. Excrutiating
detail is available in Chapter 1 under Datatypes.

Each RDBMS is exactly the same, only different. The 'only different'
is very subtle but significant enough that a generic application can
not swap out the back end without experienceing some negative impact -
frequently in scalability.

HTH
/Hans

BTW: comp.databases.oracle is a dead newsgroup, carried by only a few
ISPs. The question only needs to go to comp.database.oracle.misc (one
of the comp.databases.oracle.* heirarchy) as described in the Charter
available at http://orafaq.com

Nov 12 '05 #6
Yes, but page 125 states that for DECIMAL, the product can give you a higher precision than asked
for:

23) DECIMAL specifies the data type exact numeric, with the decimal scale specified by the <scale>

and the implementation-defined decimal precision equal to or greater than the value of the

specified <precision>.
--
Tibor Karaszi, SQL Server MVP
http://www.karaszi.com/sqlserver/default.asp
http://www.solidqualitylearning.com/
"Knut Stolze" <st****@de.ibm.com> wrote in message news:ck**********@fsuj29.rz.uni-jena.de...
Alex Filonov wrote:
pe****@gmx.net (Peter Blatt) wrote in message
news:<ck*************@news.t-online.com>...
Does 5 represent the total numer of digits (including the fractional
portion) or only the number of places BEFORE the decimal point? Moreover
does the number include the decimal point?


According to the SQL standard (SQL99), subclause 4.5.1 (page 22) says:
-----------------
An exact numeric value has a precision and a scale. The precision is a
positive integer that determines the number of significant digits in a
particular radix (binary or decimal). The scale is a non-negative integer.
A scale of 0 (zero) indicates that the number is an integer. For a scale
of S, the exact numeric value is the integer value of the significant
digits multiplied by 10^(-s).
-----------------

That makes it absolutely clear that for SQL database systems the precision
(5 in the example above) is the total number of digits, including the
fractional portion and without the decimal character.

--
Knut Stolze
Information Integration
IBM Germany / University of Jena

Nov 12 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

21
by: Headless | last post by:
I've marked up song lyrics with the <pre> tag because it seems the most appropriate type of markup for the type of data. This results in inefficient use of horizontal space due to UA's default...
3
Pre
by: Neal | last post by:
A few questions about pre... When presenting preformatted text using the white-space: pre; property/value, Opera renders long lines at small viewport widths as exiting the borders of the...
7
by: Alan Illeman | last post by:
How do I set several different properties for PRE in a CSS stylesheet, rather than resorting to this: <BODY> <PRE STYLE="font-family:monospace; font-size:0.95em; width:40%; border:red 2px...
2
by: Buck Turgidson | last post by:
I want to have a css with 2 PRE styles, one bold with large font, and another non-bold and smaller font. I am new to CSS (and not exactly an expert in HTML, for that matter). Is there a way to...
5
by: Porthos | last post by:
I'm authoring an XML document and using the <pre> html tag for the portions that are not dynamically generated. The <pre> text is displaying in a smaller font size (and I believe different font)...
5
by: Michael Shell | last post by:
Greetings, Consider the XHTML document attached at the end of this post. When viewed under Firefox 1.0.5 on Linux, highlighting and pasting (into a text editor) the <pre> tag listing will...
8
by: Jarno Suni not | last post by:
It seems to be invalid in HTML 4.01, but valid in XHTML 1.0. Why is there the difference? Can that pose a problem when such a XHTML document is served as text/html?
7
by: Rocky Moore | last post by:
I have a web site called HintsAndTips.com. On this site people post tips using a very simply webform with a multi line TextBox for inputing the tip text. This text is encode to HTML so that no...
14
by: Schraalhans Keukenmeester | last post by:
I am building a default sheet for my linux-related pages. Since many linux users still rely on/prefer viewing textmode and unstyled content I try to stick to the correct html tags to pertain good...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.