ORACLE XE版本的限制

前端之家收集整理的这篇文章主要介绍了ORACLE XE版本的限制前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

今天开发人员在导数据库的时候遇到这个错误

  1. ORA-12952:Therequestexceedsthemaximumalloweddatabasesizeof4GB

查了一下才知道XE版本对数据库有相当大的限制,比如说在10g中用户数据最大为4G,11G中最大为11G,如果超出大小就会报ora-12952/ora-12953的错误,毕竟免费的,不能让你肆无忌弹地用。

这是第一次看到Oracle在技术手段上对license的限制。


官方文档如是说:


10G xe版本的限制:

1. Express Edition is limited to a single instance on any server;
2. Express Edition may be installed on a multiple cpu server,but may only be executed on one processor in any server;
3. Express Edition may only be used to support up to 4GB of user data (not including Express Edition system data);

4. Express Edition may use up to 1 GB RAM of available memory.


Major Changes for Release 11.2

This section summarizes the major changes between Oracle Database XE Release 11.2 and the prevIoUs release (10.2).

The most obvIoUs difference is in the user interface,specifically the Database Home Page,as explained inSection 8.1.

The resource limitations are the same as for Release 10.2,except that you can now store up to11 GB of user data (not including Express Edition system data),as opposed to 4 GB in Release 10.2.


测试如下:

  1. C:\DocumentsandSettings\andyleng>setoracle_sid=XE
  2. C:\DocumentsandSettings\andyleng>sqlPLUS"/ASSYSDBA"
  3. sql*Plus:Release10.2.0.1.0-Productionon星期五4月2716:17:382012
  4. Copyright(c)1982,2005,Oracle.Allrightsreserved.
  5. Connectedto:
  6. OracleDatabase10gExpressEditionRelease10.2.0.1.0-Production
  7. sql>alterdatabasedatafile4resize4g;
  8. Databasealtered.
  9. sql>alterdatabasedatafile4resize5g;
  10. alterdatabasedatafile4resize5g
  11. *
  12. ERRORatline1:
  13. ORA-12952:Therequestexceedsthemaximumalloweddatabasesizeof4GB
原文链接:https://www.f2er.com/oracle/210725.html

猜你在找的Oracle相关文章