首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > 其他数据库 >

drop tablespace直接剔除文件(转)

2013-01-23 
drop tablespace直接删除文件(转)create tablespace svn_dir_tree_1logging datafile /data/oracle/produ

drop tablespace直接删除文件(转)
create tablespace svn_dir_tree_1
logging
datafile '/data/oracle/product/10.2/db_1/dbs/test_1.dbf'
size 512m
autoextend on
next 512m maxsize 32767M
extent management local;

drop tablespace test including contents;
create tablespace svn_dir_tree_1
logging
datafile '/data/oracle/product/10.2/db_1/dbs/test_1.dbf'
reuse;

drop tablespace test including contents and datafiles;

热点排行