runxinzhi.com
首页
百度搜索
ORACLE_SID的查找
S
ID
是System
ID
entifier的缩写,而
ORACLE
_S
ID
就是
Oracle
System Identifier的缩写,在
Oracle
系统中,ORACLE_SID以环境变量的形式出现,在特定版本的Oracle软件安装(也就是ORACLE_HOME)下,当Oracle实例启动时,操作系统上fork的进程必须通过这个SID将实例与其他实例区分开来,这就是SID的作用。
Oracle的sid在不同的系统环境下,查看方式不相同,方法分别如下:
1、windows 下查看注册表
开始 输入regedit 查看
HKEY_LOCAL_MACHINESOFTWAREORACLEKEY_OraDb11g_home1ORACLE_SID就是
2、linux或者unix下可以
echo $ORACLE_SID
注意:ORACLE_SID要大写
3、在sql命令下可以查看
连接后查询:
SQL> select instance_name from v$instance;
相关阅读:
「日常训练」Bad Luck Island(Codeforces Round 301 Div.2 D)
「日常训练」Ice Cave(Codeforces Round 301 Div.2 C)
「日常训练」School Marks(Codeforces Round 301 Div.2 B)
「知识学习」二分图的最大匹配、完美匹配和匈牙利算法(HDU-2063)
「日常训练」 Counting Cliques(HDU-5952)
「日常训练」Maximum Multiple(HDU-6298)
「日常训练」 Yukari's Birthday(ZOJ-3665)
「Python」Numpy equivalent of MATLAB's cell array
「Python」Convert map object to numpy array in python 3
「Python」matplotlib备忘录
原文地址:https://www.cnblogs.com/a9999/p/6949795.html
最新文章
继续几道经典的js题(局部和全局变量,对象等)
MDP
Upgrade Hole puncher Mathematical Modeling
ant colony algorithm && decision tree
veterbi
divideSentence
obtainKeywords
GbFileToUTF8File
IF
simpleHandleData
热门文章
力扣算法题—143ReorderList
力扣算法题—144Binary Tree Preorder Traversal
力扣算法题—145BinartTreePostorderTraversal
力扣算法题—147Insertion_Sort_List
力扣算法题—148sort-list
力扣算法题—149Max Points on a line
力扣算法题—150. Evaluate Reverse Polish Notation
力扣算法题—111.Minimum Depth of Binary Tree
剑指offer——03二维数组中的查找
剑指offer——75不用加减乘除做加法
Copyright © 2020-2023
润新知