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.
我在远程服务器上有一个 Oracle 数据库。我需要检查数据库的状态(即从 v$instance 中选择状态)。我使用 ssh 实用程序登录..ssh username@server << EOF,现在我需要运行上面的 sql 查询并 grep 输出。需要帮助,提前谢谢..!!
您需要一个用于命令行的 Oracle 数据库客户端。例如,MySQL 的客户端是 /usr/bin/mysql ,您可以在命令行上运行查询
/usr/bin/mysql yourdb -e "SELECT ...."