Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有一个轻量级的 sql 语句可以针对 oracle 数据库来测试数据库是否已启动、可用并能够执行 sql?
SELECT 1 FROM dual
是一个常见的。您也可以从中选择任何常数值DUAL。
DUAL
如果不想先连接,可以通过链接查询,例如我有一组外部系统的链接,我运行如下形式的SQL:
select * from global_name@myLink01.WORLD;
如果您编写sql语句来描述双表,那么您也将了解db是否启动并运行。
描述双;