ORACLE 切换个实例,启动多个实例
2021/7/16 19:08:47
本文主要是介绍ORACLE 切换个实例,启动多个实例,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
//切换用户 [root@CentosDB ~]# su - oracle 上一次登录:五 7月 16 10:05:08 CST 2021pts/0 上 //切换实例 [oracle@CentosDB ~]$ export ORACLE_SID=orcl [oracle@CentosDB ~]$ sqlplus /nolog SQL*Plus: Release 11.2.0.1.0 Production on Fri Jul 16 11:33:44 2021 Copyright (c) 1982, 2009, Oracle. All rights reserved. SQL> conn / as sysdba Connected. SQL> show parameter name NAME TYPE VALUE ------------------------------------ ----------- ------------------------------ db_file_name_convert string db_name string orcl db_unique_name string orcl global_names boolean FALSE instance_name string orcl lock_name_space string log_file_name_convert string service_names string orcl SQL> //切换到另一个实例 [oracle@CentosDB ~]$ export ORACLE_SID=orcl [oracle@CentosDB ~]$ sqlplus /nolog SQL*Plus: Release 11.2.0.1.0 Production on Fri Jul 16 11:33:44 2021 Copyright (c) 1982, 2009, Oracle. All rights reserved. SQL> show parameter name SP2-0640: Not connected SQL> conn / as sysdba Connected. SQL> show parameter name NAME TYPE VALUE ------------------------------------ ----------- ------------------------------ db_file_name_convert string db_name string orcl db_unique_name string orcl global_names boolean FALSE instance_name string orcl lock_name_space string log_file_name_convert string service_names string orcl SQL> exit Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64 With the Partitioning, OLAP, Data Mining and Real Application Testing options [oracle@CentosDB ~]$ clear [oracle@CentosDB ~]$ export ORACLE_SID=zsny [oracle@CentosDB ~]$ sqlplus /nolog SQL*Plus: Release 11.2.0.1.0 Production on Fri Jul 16 11:38:12 2021 Copyright (c) 1982, 2009, Oracle. All rights reserved. SQL> conn / as sysdba Connected to an idle instance. SQL> show parameter name ORA-01034: ORACLE not available Process ID: 0 Session ID: 0 Serial number: 0 //启动另一个实例 SQL> startup ORACLE instance started. Total System Global Area 1302769664 bytes Fixed Size 2213056 bytes Variable Size 805309248 bytes Database Buffers 486539264 bytes Redo Buffers 8708096 bytes Database mounted. Database opened. SQL>
这篇关于ORACLE 切换个实例,启动多个实例的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-02在 Objective-C 中strong 和 retain有什么区别-icode9专业技术文章分享
- 2024-11-02NSString 中的 hasPrefix 有什么作用-icode9专业技术文章分享
- 2024-11-02在 C 和 Objective-C 中inline的用法是什么-icode9专业技术文章分享
- 2024-11-02文件掩码什么意思?-icode9专业技术文章分享
- 2024-11-02在 Git 提交之前运行 composer cs-fix 命令怎么实现-icode9专业技术文章分享
- 2024-11-02为 Composer 的 cs-fix 命令指定一个目录怎么实现-icode9专业技术文章分享
- 2024-11-02微信公众号开发中怎么获取用户的 unionid-icode9专业技术文章分享
- 2024-11-01lip-sync公司指南:一文读懂主要玩家和技术
- 2024-11-01Anthropic的新RAG方法——提升大型语言模型在特定领域的表现
- 2024-11-01UniApp 中组件的生命周期是多少-icode9专业技术文章分享