博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Oracle同一个用户下启动多个数据库实例
阅读量:5754 次
发布时间:2019-06-18

本文共 1464 字,大约阅读时间需要 4 分钟。

 oracle@yingxiang-testServer1 oradata]$ export ORACLE_SID=APPDB
[oracle@yingxiang-testServer1 oradata]$ lsnrctl start
LSNRCTL for Linux: Version 11.2.0.4.0 - Production on 22-MAY-2014 11:42:15
Copyright (c) 1991, 2013, Oracle.  All rights reserved.
TNS-01106: Listener using listener name LISTENER has already been started
[oracle@yingxiang-testServer1 oradata]$ sqlplus  "/as sysdba"
SQL*Plus: Release 11.2.0.4.0 Production on Thu May 22 11:42:21 2014
Copyright (c) 1982, 2013, Oracle.  All rights reserved.
Connected to an idle instance.
SQL> startup
ORACLE instance started.
Total System Global Area  784998400 bytes
Fixed Size                  2257352 bytes
Variable Size             478154296 bytes
Database Buffers          301989888 bytes
Redo Buffers                2596864 bytes
Database mounted.
Database opened.
SQL> exit
Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
[oracle@yingxiang-testServer1 oradata]$ export ORACLE_SID=FILENETDB
[oracle@yingxiang-testServer1 oradata]$ sqlplus  "/as sysdba"
SQL*Plus: Release 11.2.0.4.0 Production on Thu May 22 11:43:07 2014
Copyright (c) 1982, 2013, Oracle.  All rights reserved.
Connected to an idle instance.
SQL> startup
ORACLE instance started.
Total System Global Area  588746752 bytes
Fixed Size                  2255472 bytes
Variable Size             226493840 bytes
Database Buffers          356515840 bytes
Redo Buffers                3481600 bytes
Database mounted.
Database opened.
SQL> 

转载地址:http://fwckx.baihongyu.com/

你可能感兴趣的文章
jQuery插件的开发
查看>>
基础,基础,还是基础之JAVA基础
查看>>
如何成为一个C++高级程序员
查看>>
ant android 打包签名和渠道
查看>>
一个简单的接口,被调用并同步给出响应的方法
查看>>
Hadoop序列化与压缩
查看>>
由“男怕入错行”说开去
查看>>
CGImageSource对图像数据读取任务的抽象
查看>>
我的友情链接
查看>>
xss test
查看>>
也谈svn分支与合并
查看>>
显式锁(第十三章)
查看>>
LBS“他爹”GIS
查看>>
SCCM的证书配置PKI
查看>>
看linux书籍做的一些重要笔记(2011.07.03更新)
查看>>
CString、Char* ,char [20]、wchar_t、unsigned short转化
查看>>
从案例学RxAndroid开发(上)
查看>>
Redis学习手册(内存优化)
查看>>
浅尝TensorFlow on Kubernetes
查看>>
springboot系列十 Spring-Data-Redis
查看>>