如何确定我的Oracle数据库是本地部署还是云端部署

huangapple go评论69阅读模式
英文:

How to know if my oracle DB is on premise or cloud

问题

如何知道我的Oracle数据库(19c)是在本地还是在云上运行?
这个数据库还与Apex连接。
我在Google上搜索过,但找不到任何解决方案。

英文:

How to know if my oracle DB (19c) is on premise or running on cloud?
This DB is connected with Apex as well.
I have searched in Google but could not get any solution.

答案1

得分: 1

运行

select CLOUD_IDENTITY
from v$pdbs;

这将告诉你是否在Oracle云上,或者(null)表示在本地。

英文:

Run

select CLOUD_IDENTITY
from v$pdbs;

That will tell if you its on Oracle cloud, or (null) means on-premises.

huangapple
  • 本文由 发表于 2023年3月9日 13:01:48
  • 转载请务必保留本文链接:https://go.coder-hub.com/75680600.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定