CLOB 和 NCLOB 有什么区别?
您能说明 CLOB
和 NCLOB
之间有什么区别吗?
Can you state any difference between the CLOB
and NCLOB
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
您能说明 CLOB
和 NCLOB
之间有什么区别吗?
Can you state any difference between the CLOB
and NCLOB
?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
CLOB 存储以数据库字符集编码的字符数据。 NCLOB 存储以国家字符集编码的字符数据,
将向您显示数据库和数据库的国家字符集。
A CLOB stores character data encoded in the database character set. A NCLOB stores character data encoded in the national character set
will show you the database and national character sets of your database.
BLOB、CLOB、NCLOB 和 BFILE
内置的 LOB 数据类型 BLOB、CLOB 和 NCLOB(内部存储)以及 BFILE(外部存储)可以存储大型非结构化数据,例如文本、图像和空间数据,最大大小为 4 GB。
BLOB
BLOB 数据类型存储二进制大对象。 BLOB 最多可以存储 4 GB 的二进制数据。
CLOB
CBLOB 数据类型存储字符大对象。 CLOB 最多可以存储 4 GB 的字符数据。
NCLOB
NCBLOB 数据类型以多字节国家字符集存储字符大对象。 NCLOB 最多可以存储 4 GB 的字符数据。
BFILE
BFILE 数据类型允许访问存储在 Oracle 数据库外部的文件系统中的二进制文件 LOB。 BFILE 列存储定位器,该定位器充当指向服务器文件系统上的二进制文件的指针。支持的最大文件大小为 4 GB。
BLOB, CLOB, NCLOB and BFILE
The built-in LOB data types BLOB, CLOB and NCLOB (stored internally), and BFILE (stored externally), can store large and unstructured data such as text, images and spatial data up to 4 gigabytes in size.
BLOB
The BLOB data type stores binary large objects. BLOB can store up to 4 gigabytes of binary data.
CLOB
The CBLOB data type stores character large objects. CLOB can store up to 4 gigabytes of character data.
NCLOB
The NCBLOB data type stores character large objects in multibyte national character set. NCLOB can store up to 4 gigabytes of character data.
BFILE
The BFILE data type enables access to binary file LOBs that are stored in file systems outside the Oracle database. A BFILE column stores a locator, which serves as a pointer to a binary file on the server's file system. The maximum file size supported is 4 gigabytes.