Guy Rouillier wrote: > Christophe Pettus wrote: > > > > On Oct 4, 2009, at 7:09 PM, Guy Rouillier wrote: > >> There is no reason why PG could not support packed decimal. > > > > Is that not NUMERIC? > > No, that is not NUMERIC. All numeric types are stored as binary > representations. Packed decimal is not. Perhaps an example would > clarify. The number 1234 would be represented as follows: I think you are wrong. The Postgres documentation say: The type <type>numeric</type> can store numbers with up to 1000 digits of precision and perform calculations exactly. It is especially recommended for storing monetary amounts and other quantities where exactness is required. However, arithmetic on <type>numeric</type> values is very slow compared to the integer types, or to the floating-point types described in the next section. Postgres NUMERIC is packed decimal, base 1000, as I remember. -- Bruce Momjian <bruce@xxxxxxxxxx> http://momjian.us EnterpriseDB http://enterprisedb.com + If your life is a hard drive, Christ can be your backup. + -- Sent via pgsql-general mailing list (pgsql-general@xxxxxxxxxxxxxx) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-general