文件名称:表空间的日常维护-db2基础培训
文件大小:1.26MB
文件格式:PPT
更新时间:2024-05-15 13:24:35
IBM DB2
表空间的日常维护 查看表空间信息 list tablespaces show detail 查看表空间对应容器信息 list tablespace containers for 1 表空间的建立 create tablespace tp1 managed by database using ( file 'c:\tt1.dat' 10M, file 'd:\tt2.dat' 10M) create tablespace tp2 managed by system using ( 'c:\ tt3') 表空间的删除 drop tablespace tp1(将删除表空间中的所有表) 为表空间添加容器 alter tablespace tp1 add ( file 'c:\tt2.dat' 5M) 增加容器大小 alter tablespace tp1 extend ( file 'c:\tt2.dat' 10M) 改变容器大小 alter tablespace tp1 resize ( file 'c:\tt2.dat'10M)