PL/SQL 数据类型支持大小大于 NArchar2

发布于 2024-12-01 19:34:58 字数 168 浏览 1 评论 0原文

PL/SQL 具有数据类型 NVARCHAR2(size),其中大小为 32767 字节;相当于4095条记录。

现在,我应该提供什么数据类型作为 NVARCHAR2 的替代方案来支持超过 4k 的记录?我在asp.net中有一个不支持分页的gridview。哪种数据类型最适合支持超过 4095 条记录?

PL/SQL has data type NVARCHAR2(size) where the size is 32767 bytes; equivalent to 4095 records.

Now, what data type should i give as an alternative to NVARCHAR2 that could support more than 4k records? I have a gridview in asp.net that doesn't support paging. Which datatype is most suitable to support more than 4095 records?

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

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

发布评论

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

评论(1

姜生凉生 2024-12-08 19:34:58

这只是文字吗?您可以使用 CLOB

CLOB 数据类型存储单字节和多字节字符数据。
支持固定宽度和可变宽度字符集,并且
两者都使用数据库字符集。 CLOB 对象最多可以存储 (4
gigabytes -1) *(LOB 存储的 CHUNK 参数的值)
字符数据。如果您的数据库中的表空间是标准的
块大小,以及是否使用了 CHUNK 的默认值
创建LOB列时LOB存储的参数,那么这是
相当于 (4 GB - 1) *(数据库块大小)。

您可以检查同一页面以获取其他信息用于存储大量数据的类型(BLOBNCLOB)。

Is this just text? You could use CLOB:

The CLOB data type stores single-byte and multibyte character data.
Both fixed-width and variable-width character sets are supported, and
both use the database character set. CLOB objects can store up to (4
gigabytes -1) * (the value of the CHUNK parameter of LOB storage) of
character data. If the tablespaces in your database are of standard
block size, and if you have used the default value of the CHUNK
parameter of LOB storage when creating a LOB column, then this is
equivalent to (4 gigabytes - 1) * (database block size).

You can check same page for other types (BLOB, NCLOB) for storing large amounts of data.

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