CLOB 和 NCLOB 有什么区别?

发布于 2024-11-26 20:38:30 字数 60 浏览 1 评论 0原文

您能说明 CLOBNCLOB 之间有什么区别吗?

Can you state any difference between the CLOB and NCLOB?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

时光是把杀猪刀 2024-12-03 20:38:30

CLOB 存储以数据库字符集编码的字符数据。 NCLOB 存储以国家字符集编码的字符数据,

SELECT parameter, value
  FROM v$nls_parameters
 WHERE parameter LIKE '%CHARACTERSET'

将向您显示数据库和数据库的国家字符集。

A CLOB stores character data encoded in the database character set. A NCLOB stores character data encoded in the national character set

SELECT parameter, value
  FROM v$nls_parameters
 WHERE parameter LIKE '%CHARACTERSET'

will show you the database and national character sets of your database.

你げ笑在眉眼 2024-12-03 20:38:30

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文