|
Oracle data types - August 11, 2008 at 15:00 PM by Amit Satpute
Explain the differences between char and varchar2 data types.
Answer
The char data type accepts strings that are of fixed length.
The VARCHAR2 data type is a varying length data type.
Explain BLOB, CLOB, NCLOB and BFILE.
Answer
These are the built in large object data types.
-
BLOB, CLOB, NCLOB are stored internally where as BFILE is stored externally
-
The BLOB data type stores binary large objects.
-
The CBLOB data type stores character large objects.
-
The NCBLOB data type stores character large objects in multibyte national
character set.
-
The BFILE data type enables access to binary file LOBs that are stored in file
systems outside the Oracle database.
All these data types have a capacity of 4GB
|