Oracle 临时表空间的管理
临时表空间的处理
1.创建一个新的temporary tablespace;
create temporary tablespace tp tempfile '......' size 10m autoextend on;
2.改变数据库的默认临时表空间
alter database default temporary tablespace tp;
3。drop tablespace temp;
4.create temporary tablespace temp tempfile '......' size 10m autoextend on;
5.alter database default temporary tablespace temp;
6.select * from database_properties where rownum<3;
改实例的名称
1.改初始化参数
nomout
alter system set instance_name=new scope=spfile;
2.shutdown
3.改spfile##.ora--->spfilenew.ora
4.pwd##.ora----->pwdnew.ora
5.regedit
oracle_sid=new
6.改服务
dos>oradim -new -sid new
7.重新进入sqlplus
8.startup
9.select instance_name from v$instance;