-
删除表空间
drop tablespace 表空间名字 需要删除表空间数据加上这个否则不需要[including contents];
例子:drop tablespace test1_tablespace including contents;//删除表空间数据
drop tablespace test1_tavlespace;//只删除表空间,不删除表空间数据
查看全部 -
<!--增加数据文件--!>
alter tablespace 表空间名称 add datafile '数据文件的名字' size xxM
例子:alter tablespace test1_tablespace add datafile 'test2_file.dbf' size 10M
<!--查询数据文件--!>
select file_name from dba_data_files where tablespace_name = '表空间名字';
例子:select file_name from dba_data_files where tablespace_name = 'TEST1_TABLESPACE';
<!--删除数据文件--!>
alter tablespace 表空间名称 drop datafile '数据文件的名字';
例子:alter tablespace test1_tablespace drop datafile 'test2_file.dbf';
查看全部 -
搜索
复制
查看全部 -
搜索
复制
查看全部 -
搜索
复制
查看全部 -
搜索
复制
查看全部 -
搜索
复制
查看全部 -
搜索
复制
查看全部 -
搜索
复制
查看全部 -
搜索
复制
查看全部 -
搜索
复制
查看全部 -
搜索
复制
查看全部 -
搜索
复制
查看全部 -
123
查看全部 -
select * from dual
查看全部
举报