Altering table storage
alter table employee move
STORAGE (
INITIAL 200K
NEXT 200K
PCTINCREASE 0
MAXEXTENTS 50 )
TABLESPACE PROD_DATA_04 ;
# Alter table: modifying a column
ALTER TABLE employee MODIFY (last_name varchar2(35));
A collection of Computer seminars, notes, e books, tips on computers and computer related technologies such as Networking, SQL, RDBMS, Unix, Linux, Web technology, HTML, Basic Computer, Database, Computer Hardware, Installation, Maintenance, Utilities, Accessories, Microsoft Products, Operating Systems, Every thing about computers.
Altering table storage
alter table employee move
STORAGE (
INITIAL 200K
NEXT 200K
PCTINCREASE 0
MAXEXTENTS 50 )
TABLESPACE PROD_DATA_04 ;
# Alter table: modifying a column
ALTER TABLE employee MODIFY (last_name varchar2(35));
No comments:
Post a Comment