Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: oracle generated numbers are being store in scientific notation.

Re: oracle generated numbers are being store in scientific notation.

From: DA Morgan <damorgan_at_x.washington.edu>
Date: Tue, 05 Apr 2005 22:40:24 -0700
Message-ID: <1112765803.374208@yasure>


lcwcode_at_hotmail.com wrote:

> OUR DBA created a column that is defined as number(20)that
> automatically generates the numbers for this column. Some of the
> numbers are being stored in scientific notation. What does this mean?
> We need to define this column as another type? It seems like it has
> reached the limits that oracle will allow. Any info will help because
> I'm not a database person I just want to make sure this will not cause
> us any problems. I know it's using the auto generate feature in Oracle.

To find out how they are stored:

SELECT dump(<column_name>) FROM <table_name>;

To then view it try:

SQL> col <column_name> format 99999999999999999999

Then your SQL statement

-- 
Daniel A. Morgan
University of Washington
damorgan_at_x.washington.edu
(replace 'x' with 'u' to respond)
Received on Wed Apr 06 2005 - 00:40:24 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US