alter tablespace test1_tablespace add datafile 'test2_file.dbf' size 10m;
select file_name from dba_files where tablespace_name='TEST1_TABLESPACE';
alter tablespace test1_tablespace drop datafile 'test2_file.dbf';
select file_name from dba_files where tablespace_name='TEST1_TABLESPACE';
select file_name from dba_files where tablespace_name='TEST1_TABLESPACE';
alter tablespace test1_tablespace drop datafile 'test2_file.dbf';
select file_name from dba_files where tablespace_name='TEST1_TABLESPACE';
2018-01-06
alter tablespace test1tablespace read only;
select status from dba_tablespaces where tablespace_name='TEST1_TABLESPACE';
alter tablespace test1_tablespace read write;
select status from dba_tablespaces where tablespace_name='TEST1_TABLESPACE';
alter tablespace test1_tablespace read write;
2018-01-06
alter tablespace test1_tablespace offline;
desc dba_tablespaces;
select status from dba_tablespaces where tablespace_name='TEST1_TABLESPACE';
alter tablespace test1_tablespace online;
select status from dba_tablespaces where tablespace_name='TEST1_TABLESPACE';
desc dba_tablespaces;
select status from dba_tablespaces where tablespace_name='TEST1_TABLESPACE';
alter tablespace test1_tablespace online;
select status from dba_tablespaces where tablespace_name='TEST1_TABLESPACE';
2018-01-06
desc dba_data_files
select file_name from dba_data_files where tablespace_name='TEST1_TABLESPACE';
select file_name from dba_temp_files where tablespace_name='TEMPTEST1_TABLESPACE';
select file_name from dba_data_files where tablespace_name='TEST1_TABLESPACE';
select file_name from dba_temp_files where tablespace_name='TEMPTEST1_TABLESPACE';
2018-01-06
create tablespace test1_tablespace datafile 'test1file.dbf' size 10m;
create temporary tablespace teptest1_tablespace tempfile 'tempfile1.dbf' size 10m;
create temporary tablespace teptest1_tablespace tempfile 'tempfile1.dbf' size 10m;
2018-01-06
desc dba_users
select defaut_tablespaces,temporary_tablespaces from dba_users where username='SYSTEM';
alter user system
default tablespace system
select defaut_tablespaces,temporary_tablespaces from dba_users where username='SYSTEM';
alter user system
default tablespace system
2018-01-06
desc dba_tablespaces
select tablespace_name frome dba_tablespaces;
desc user_tablespaces
select tablespance_name frome user_tablespaces;
connect scott/tiger
select tablespace_name from dba_tablespaces;
select tablespace_name from user_tablespaces;
select tablespace_name frome dba_tablespaces;
desc user_tablespaces
select tablespance_name frome user_tablespaces;
connect scott/tiger
select tablespace_name from dba_tablespaces;
select tablespace_name from user_tablespaces;
2018-01-06
alter user scott account unlock;
connect scott
show user
connect scott
show user
2018-01-06
Dba_tablespaces该数据字典针对的系统管理员级的用户来查看的数据字典,
user_tablespace该数据字典为普通用户登录后来查看的数据字典。
作为系统管理员登录的时候,对应的表空间(dba_tablespaces下面的表空间)默认情况下为这6个:
System:用来存放sys用户的表、视图以及存储过程的数据库对象,也被我们称为是一个系统表空间。
Sysaux:作为example的一个辅助表空间。
Undotbs1:主要用于存储撤销信息的。
Temp:存储sql语句处理的表和索引信息的,他是一个临时表空间。
Users:属于一个永久性表空间,存储数据库用户创建的数据库对象。
user_tablespace该数据字典为普通用户登录后来查看的数据字典。
作为系统管理员登录的时候,对应的表空间(dba_tablespaces下面的表空间)默认情况下为这6个:
System:用来存放sys用户的表、视图以及存储过程的数据库对象,也被我们称为是一个系统表空间。
Sysaux:作为example的一个辅助表空间。
Undotbs1:主要用于存储撤销信息的。
Temp:存储sql语句处理的表和索引信息的,他是一个临时表空间。
Users:属于一个永久性表空间,存储数据库用户创建的数据库对象。
2018-01-04