php - Oracle Equivalent of MySQL's TEXT type -
What is the column type of MySQL TEXT
type in Oracle?
If not, how big blocks of text are usually stored? BLOB
, varchar (32767)
? If this matters, the Oracle 10 is being accessed by PHP, the historical context is welcome.
Blob, colob and NCLBB for binary, character and unicode storage in Oracle is character data type you LOB The storage area can also be specified which allows DBA to recover the storage when necessary (i.e. to put LOB data on separate discs)
This page provides a bit more information:
Comments
Post a Comment