Talk About Network

Google


Register and Login
Nick
Password
Register create new account Sign up is FREE and you can post replies, new topics, bookmark posts and more!
Recover lost password


Data Bases > Oracle Tools > Re: ORACLE XE
Latest [ Topics | Posts ] Archive Post A New Topic Post a Reply
<< Topic < Post Post 5 of 5 Topic 2717 of 2794
Post > Topic >>

Re: ORACLE XE

by Gints Plivna <gints.plivna@[EMAIL PROTECTED] > Mar 15, 2008 at 08:48 AM

> I've always wondered if 4GB also includes indexes or is it just pure user
> data..
Sum of tablespaces simply cannot be bigger than that.

Connected to:
Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production
SQL> create table q (a number)
  2  tablespace system storage (initial 5g);
create table q (a number)
*
ERROR at line 1:
ORA-12952: The request exceeds the maximum allowed database size of 4
GB
SQL> create table q (a number)
  2  tablespace users;

Table created.
SQL> create index qidx on q (a)
  2  tablespace users storage (initial 5g);
create index qidx on q (a)
                     *
ERROR at line 1:
ORA-12952: The request exceeds the maximum allowed database size of 4
GB

BTW actually it seems that the upper level is 5G including ~4G user
data and ~1G system data - system and sysaux tablespace, which
actually can include also some user tables.
  1  select TABLESPACE_NAMe,
  2         to_char(sum(bytes/1024/1024/1024), '9999999.99') "Size
GBytes"
  3  from dba_data_files
  4  where TABLESPACE_NAMe <> 'UNDO'
  5* group by rollup(TABLESPACE_NAMe)
SQL> /

TABLESPACE_NAME                Size GBytes
------------------------------ -----------
SYSAUX                                 .50
SYSTEM                                 .34
USERS                                 4.15
                                      4.99

Gints Plivna
http://www.gplivna.eu
 




 5 Posts in Topic:
ORACLE XE
"Alberto Bignotti&qu  2008-03-04 15:42:42 
Re: ORACLE XE
Frank van Bortel <fran  2008-03-04 19:11:34 
Re: ORACLE XE
Gints Plivna <gints.pl  2008-03-04 14:13:19 
Re: ORACLE XE
sircco <sircco@[EMAIL   2008-03-15 09:18:29 
Re: ORACLE XE
Gints Plivna <gints.pl  2008-03-15 08:48:37 

Post A Reply:
  Go here to Signup

AddThis Feed Button


About - Advertising - Contact - Frequently Asked Questions - Privacy Policy - Terms of Use - Signup

Contact
tan12V112 Thu Aug 28 12:19:16 CDT 2008.