开发者博客:www.developsearch.com
l 创建表空间和临时表空间 10g
create tablespace IDEALIMSDB datafile 'D:\oracle\product\10.2.0\oradata\orcl\IDEALIMSDB.dbf' size 300M autoextend on next 100M maxsize unlimited logging extent management local autoallocate segment space management auto; create temporary tablespace IDEALIMSTEMPDB tempfile 'D:\oracle\product\10.2.0\oradata\orcl\IDEALIMSDBTEMP.dbf' size 100M autoextend on next 640k maxsize unlimited ;
l 创建表空间和临时表空间 11g
create tablespace IDEALIMSDB logging datafile 'F:\app\Administrator\oradata\orcl\IDEALIMSDB.dbf' size 200m autoextend on next 50m maxsize 300m extent management local create user idealims identified by idealims default tablespace IDEALIMSDB temporary tablespace IDEALIMSTEMPDB
l 查看数据库表空间文件的路径
select FILE#,NAME from v$datafile;
l 查看已经建好的表空间 :
select * from dba_tablespaces;
l 删除表空间
(1)不删文件 drop tablespace IDEALIMSTEMPDB;
(2)删除文件 drop tablespace IDEALIMSTEMPDB including contents and datafiles;
l 删除表空间中的数据文件:
alter tablespace testspace drop datafile '/oradata2/data2/appdb/idealims.dbf';
l 修改表空间文件的数据文件大小:
alter database datafile '/oradata2/data2/appdb/idealims.dbf' resize 10m;
l 修改表空间数据文件的自动增长属性:
alter database datafile '/oradata2/data2/appdb/idealims.dbf' autoextend off;
l 修改表空间的读写属性:
SQL> alter tablespace testspace read only;(只读)
SQL> alter tablespace testspace read write;(读写)
l 转移物理文件路径的操作:
(1)设置表空间脱机 alter tablespac testspace offline;
(2)物理转移表空间文件;即把你的表空间物理文件转移到你想移动的路径
(3)逻辑转移:alter tablespace testspace rename datafile 'd:/OracleTest/test001.dbf' to 'e:/test001.dbf';
(4)设置表空间联机 alter tablespace testspace online;
(1)设置表空间脱机 alter tablespac testspace offline;
(2)物理转移表空间文件;即把你的表空间物理文件转移到你想移动的路径
(3)逻辑转移:alter tablespace testspace rename datafile 'd:/OracleTest/test001.dbf' to 'e:/test001.dbf';
(4)设置表空间联机 alter tablespace testspace online;
l 物理文件被非法删除时,怎样启动数据库:
(1)关闭数据库服务 shutdown
(2)alter database datafile 'd:/test001.dbf' offline drop;
(3)alter database open;
(4)开启数据库服务 startup;
l 查看表空间名:
Select distinct Tablespace_Name from tabs;
select tablespace_name from user_tablespaces;
l 本地创建用户 :
create user idealims_jx
identified by "passw0rd"
default tablespace IDEALIMSDB
temporary tablespace TEMP
profile DEFAULT;
l 删除用户:
drop user idealims_jx cascade;
l 用户授权 :
grant connect, dba, resource to idealims_jx;
希望在scott用户下能看到mk用户中test表的数据???
connect mk/m123
grant select on test to scott; //授权scott能select
connect scott/tiger
select * from mk.test;