« Oracle: wait statisics by block class | Home | Oracle: list of the running transactions »
Oracle: sql types
Here is the list of the Oracle SQL types and their internal codes:
SELECT t.typecode,o.name
FROM sys.type$ t, sys.obj$ o
WHERE
BITAND (t.properties, 16) = 16
AND t.toid = o.oid$
ORDER BY t.typecode
Topics: Oracle, internal | Submitter: checkthis
Comments
You must be logged in to post a comment.