zoukankan      html  css  js  c++  java
  • 58数据库重建表空间记录

     create undo tablespace undotbs1 datafile '/home/oracle/product/11.2.0/oradata/srcl/undotbs01.dbf' size 10240m reuse;
    alter system set undo_tablespace=undotbs1 scope=both;
    alter tablespace UNDOTBS4 offline;
    drop tablespace UNDOTBS4 including contents and datafiles cascade constraints; 
     
     /home/oracle/deploy_shell/version
    cd /home/oracle/deploy_shell/bin 
    ./BBD_ReleaseDB.sh kensho 
     


    tomcat
    cd /opt/tomcat/bin
    ./shutdown.sh
    ./startup.sh

    apache:
    172.29.231.16
    service httpd start
    service httpd stop

    172.29.231.58 or 172.29.231.17

    /usr/local/apache2/bin/apachectl start
    /usr/local/apache2/bin/apachectl stop

    WEB:172.29.231.16
    DB:172.29.231.58 接DB172.29.231.58:1521@srcl

    user:root
    password:Founder123

    sqlplus / as sysdba
    shutdown immediate;
    startup

    /home/bb/batch/plsql
     启动oracle

      su - oracle

      sqlplus system/pwd as sysdba //进入sql
      startup //启动数据库
      lsnrctl start //启动监听
      sqlplus "/as sysdba"

      shutdown immediate;

      startup mount;

      alter database open;

    export?NLS_LANG=AMERICAN_AMERICA.AL32UTF8
    172.29.225.217 MQ linux?root wflroot cd?/opt/mqm/bin ./strmqcfg

  • 相关阅读:
    强弱类型 静态语言 动态语言 || 脚本语言
    mysql版本升级问题处理
    word
    IntelliJ IDEA 插件
    dubbo
    spring源码构建
    zookeeper 本地多线程模拟分布式事务控制及配置中心
    一次性关闭所有的Activity
    可能以后用得到得东西
    Thread.sleep还是TimeUnit.SECONDS.sleep
  • 原文地址:https://www.cnblogs.com/caogang/p/4553975.html
Copyright © 2011-2022 走看看