英文:
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.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论