dayoff

--1.数据库备份 以test实例 用户ora_test
 expdp system/xxxx@test directory=dump_dir dumpfile=20181023_test.dmp schemas=ora_test;
--2 停监听
   lsnrctl stop
--3杀外部连接
 ps -ef| grep LOCAL=NO |grep -v grep|awk \'{print $2}\' |xargs kill -9
--4杀掉除本身以外的内部连接
 ps -ef| grep LOCAL=YES |grep -v grep|awk \'{print $2}\' |xargs kill -9
--5.以系统管理员身份登录sqlplus
 sqlplus / as sysdba
--6.切换日志
    alter system switch logfile;      
    alter system checkpoint;
--7.停库 
   shutdown immediate;
--8.启动数据库
    startup;
--9.退出sqlplus 
   exit;
--8.启动监听
    lsnrctl start ;

分类:

技术点:

相关文章:

  • 2022-03-03
  • 2021-11-18
  • 2021-12-05
  • 2022-01-07
  • 2021-12-21
  • 2022-12-23
  • 2022-02-15
  • 2021-05-08
猜你喜欢
  • 2021-11-18
  • 2022-01-06
  • 2022-01-12
  • 2021-11-18
  • 2021-09-04
  • 2022-02-23
相关资源
相似解决方案