id int,
lname varchar2(20) not null,
fname varchar2(20) constraint ck_1 check(fname like ’k%’),
empdate date default sysdate)
) tablespace tablespace_name;
create global temporary table test2 on commit delete/preserve rows as select * from kong.authors;
create table user.table(...) tablespace tablespace_name storage(...) pctfree10 pctused 40;
alter table user.tablename pctfree 20 pctused 50 storage(...);---changing table storage
/*手工分配分区,分配的数据文件必须是表所在表空间内的数据文件*/
alter table user.table_name allocate extent(size 500k datafile ’...’);
/*释放表中没有用到的空间*/
alter table table_name deallocate unused;
文章来源于领测软件测试网 https://www.ltesting.net/