文档解释
ORA-00064: object is too large to allocate on this O/S (string,string,string)
Cause: An initialization parameter was set to a value that required allocating more contiguous space than can be allocated on this operating system.
Action: Reduce the value of the initialization parameter.
.’
‘.
错误代码:ORA-00064
官方英文说明:”Object is too large to allocate on this O/S (system dependent)”
中文说明:对象太大,无法在该操作系统(系统相关)上分配
常见情况:
- 尝试创建的对象过大,无法在当前操作系统上分配。
- 尝试加载过大的数据库对象。
解决步骤:
- 检查创建或加载的对象的大小。
- 缩小该对象的大小。
- 增加操作系统的内存或硬盘空间。
- 若仍不能解决该问题,请联系 Oracle 技术支持以获取帮助。
. ‘