在表空間上創(chuàng)建新的數據文件
alter tablespace test1_tablespace add datafile 'test2_file.dbf' size 10m;
在表空間上刪除創(chuàng)建的數據文件
alter tablespace test1_tablespace drop datafile 'test2_file.dbf' ;
刪除表空間
drop tablespace test1_tablespace including contents;
alter tablespace test1_tablespace add datafile 'test2_file.dbf' size 10m;
在表空間上刪除創(chuàng)建的數據文件
alter tablespace test1_tablespace drop datafile 'test2_file.dbf' ;
刪除表空間
drop tablespace test1_tablespace including contents;
2018-12-18
select status from dba_tablespaces where tablespace_name='TEST1_TABLESPACE';
修改表空間狀態(tài)為只讀/讀寫狀態(tài)
alter tablesapce test1_tablespace read only/alter tablespace test1_tablespace read write;
查看表空間狀態(tài)
select status from dba_tablespaces where tablespace_name='TEST1_TABLESPACE';
修改表空間狀態(tài)為只讀/讀寫狀態(tài)
alter tablesapce test1_tablespace read only/alter tablespace test1_tablespace read write;
查看表空間狀態(tài)
select status from dba_tablespaces where tablespace_name='TEST1_TABLESPACE';
2018-12-18
查看數據文件結構
desc dba_data_files
查看數據文件存儲位置
select file_name from dba_data_files where tablespace_name = 'TEST1_TABLESPACE';
修改表空間的狀態(tài)
修改表空間狀態(tài)為脫機狀態(tài)
alter tablespace test1_tablespace offline;
查看表空間狀態(tài)
select status from dba_tablespaces where
desc dba_data_files
查看數據文件存儲位置
select file_name from dba_data_files where tablespace_name = 'TEST1_TABLESPACE';
修改表空間的狀態(tài)
修改表空間狀態(tài)為脫機狀態(tài)
alter tablespace test1_tablespace offline;
查看表空間狀態(tài)
select status from dba_tablespaces where
2018-12-18
查看默認表空間和臨時表空間
desc dba_users
select default_tablespace,temporary_tablespace from dba_users where username='SYSTEM';
修改默認表空間
alter user system default tablespace system;
創(chuàng)建表空間
create tablespace test1_tablespace datafile 'test1file.dbf' size 10m;
desc dba_users
select default_tablespace,temporary_tablespace from dba_users where username='SYSTEM';
修改默認表空間
alter user system default tablespace system;
創(chuàng)建表空間
create tablespace test1_tablespace datafile 'test1file.dbf' size 10m;
2018-12-18
登錄Oracle數據庫
登錄system和tiger:connect system/密碼 connect tiger/密碼
登錄sys: connect sys/123456 as sysdba
查看表空間結構
desc dba_tablespaces
desc user_tablespaces
select tablespace_name from dba_tablespaces;
select tablespace_name from user_tablespaces;
登錄system和tiger:connect system/密碼 connect tiger/密碼
登錄sys: connect sys/123456 as sysdba
查看表空間結構
desc dba_tablespaces
desc user_tablespaces
select tablespace_name from dba_tablespaces;
select tablespace_name from user_tablespaces;
2018-12-18