In previous versions (Ora 8, 9) I used a CREATE TABLESPACE command numerous times to make our project accounts. The whole command is as follows:
CREATE TABLESPACE myTablespace_TS
DATAFILE 'c:\oracle\oradata\myTablespace_TS.dbf'
SIZE 50M
DEFAULT STORAGE (INITIAL 20K NEXT 20K MAXEXTENTS 249 PCTINCREASE 0);
Now that I downloaded Oracle Express it no longer works. At first, Oracle would not even create the tablespace. I raised the 20K numbers to 40K and it created the tablespace. When I tried to import the old project only about half of total number of tables was imported and then the error "Unable to create INITIAL extent for segment in tablespace myTablespace_TS" showed up. What is Oracle trying to tell me?
I don't really understand this whole 'managing extents' thing. Simple arithmetic tells me that 249 times 40K in nowhere near the 50M allocated for the tablespace. Why is Oracle unable to create the extent for the next table to be imported?
Any suggestions?
Thanks,
cfFran
CREATE TABLESPACE myTablespace_TS
DATAFILE 'c:\oracle\oradata\myTablespace_TS.dbf'
SIZE 50M
DEFAULT STORAGE (INITIAL 20K NEXT 20K MAXEXTENTS 249 PCTINCREASE 0);
Now that I downloaded Oracle Express it no longer works. At first, Oracle would not even create the tablespace. I raised the 20K numbers to 40K and it created the tablespace. When I tried to import the old project only about half of total number of tables was imported and then the error "Unable to create INITIAL extent for segment in tablespace myTablespace_TS" showed up. What is Oracle trying to tell me?
I don't really understand this whole 'managing extents' thing. Simple arithmetic tells me that 249 times 40K in nowhere near the 50M allocated for the tablespace. Why is Oracle unable to create the extent for the next table to be imported?
Any suggestions?
Thanks,
cfFran