0

i have created table in oracle. one column is as follow:

  • GUID NUMBER(16),

But value of this cloumn is shown 1,01000037073356E15

how can i correct it?

Michael O'Neill
  • 946
  • 7
  • 22
Vaseph
  • 704
  • 1
  • 8
  • 20

1 Answers1

1

The preferred storage data type for GUID values on Oracle is RAW(16).

A GUID is not a number in the sense that your height is a number -- you are not going to add them together, or take their average, for example.

http://docs.oracle.com/cd/B28359_01/server.111/b28286/functions175.htm

http://asktom.oracle.com/pls/apex/f?p=100:11:0::::P11_QUESTION_ID:77564387253035

David Aldridge
  • 51,479
  • 8
  • 68
  • 96