-
表空间由一个或多个数据文件组成的 表空间分类:永久表空间、临时表空间、UNDO表空间查看全部
-
输入语句要加分号才能执行查看全部
-
ddcxs查看全部
-
数据字典包含的。表空间、临时表空间。查看全部
-
系统用户登录查看全部
-
表空间添加数据文件:alter tablespace test1 add datafile '文件名' size 10 M; 查看数据文件:select file_name from dba_data_files where tablespace_name='TEST1'; 删除表空间数据文件: alter tablespace test1 drop datafile ‘文件名’;查看全部
-
修改表空间状态:alter tablespace test1 online/offline;(online 是 联机状态 offline 是脱机状态) 修改表空间的只读和可写状态: alter tablespace test1 read only/read write; 查看表空间状态:select status from dba_tablespaces where tablespace_name = 'test1';查看全部
-
查看SYSTEM的默认表空间和临时表空间查看全部
-
scott权限低于sys,system查看全部
-
唯一约束和主键约束的区别: 主键字段值必须是非空的 唯一约束允许有一个是空值查看全部
-
创建永久空间:create tablespace test_tablespace datafile 'testfile.dbf' size 10M; 创建临时空间:create temporary tablespace temp_tablespace tempfile 'tempfile.dbf' size 10 M;查看全部
-
desc dba_tablespaces 管理员登录查看数据空间 select tablespaces_name from dba_tablespaces 该用户下面的表空间查看全部
-
挺好的查看全部
-
create table table_new as select column1,column2... from tableold查看全部
举报
0/150
提交
取消