oracle-- table space operation

01, add temporary table space

SQL> create temporary tablespace test_temp tempfile '/u01/app/oracle/oradata/oracle01/test_temp01.dbf'
  2  size 32m
  3  autoextend on
  4  next 32m maxsize 2048m
  5  extent management local;

  Standby DG environment, the main library to add temporary table space by the library does not synchronize data files

Main Library query results 
SQL >   the SELECT name from v $ tempfile; 

NAME 
- ---------------------------------- -------------------------------------------- 
/ u01 / App / the Oracle / oradata / oracle01 / temp01.dbf
 / u01 / App / the Oracle / oradata / oracle01 / test_temp01.dbf 

SQL > 


standby database query results 

SQL >   the SELECT name from v $ tempfile; 

nAME 
-------------------------------------------------------------------------------
/u01/app/oracle/oradata/oracle01/temp01.dbf
/u01/app/oracle/oradata/oracle01/test_temp01.dbf

SQL>


02, increase the temporary table space file

 

 

 

Library equipment is no synchronization temporary table space

 

  

 

Guess you like

Origin www.cnblogs.com/kingle-study/p/11353751.html