-
迁表结构和数据。 注意原表字段的default值未迁移过来。查看全部
-
默认情况下,system的默认表空间是system,临时表空间是temp.查看全部
-
在sys,system,sysman,scott中,scott默认权限最低。 权限从高到低为sys,system,sysman,scott. 其中sysman用于企业管理查看全部
-
drop tablespace tablespace_name [including contents]查看全部
-
alter tablespace TABLESPACE_NAME drop datafile 'filename.dbf'查看全部
-
alter tablespace tablespace_name add datafile'**.dbf' size *m查看全部
-
alter tablespace TABLESPCENAME READ ONLY/READ WRITE;查看全部
-
select status from dba_tablespaces where tablespace_name='大写';查看全部
-
alter tablespace tablespace_name online/offline查看全部
-
select file_name from dba_temp_files where tablespace_name='**';查看全部
-
select file_name from dba_data_files where tablespace_name='**'查看全部
-
create teblespace test1_tablespace datafile'test1file.dbf'size 10m;查看全部
-
alter user username default tablespace system/users查看全部
-
select default_talbespace,temporary_tablespace from dba_users where username='system';查看全部
-
desc dba_users; desc user_users查看全部
举报
0/150
提交
取消