如何用Java连接RMAN?

发布于 2024-10-14 02:11:08 字数 113 浏览 3 评论 0原文

我不知道如何在 Java 中连接到 RMAN。当我使用非 SQL 命令(例如 RMAN 等)时,简单请求不起作用...我要制作类似“ORACLE Secure BackUP”的程序,但是它们如何连接到 RMAN?

I don't know how to connect to RMAN in Java. Simple request don't work when I use command non-SQL, like RMAN etc... I'm gonna to make program like "ORACLE Secure BackUP", but how they connected to RMAN??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

栀梦 2024-10-21 02:11:08

我不认为除了命令行之外还有已发布的 API 用于与 RMAN 交互。因此,如果您想创建像 Oracle Secure Backup 这样使用 RMAN 的程序,您可能必须从 Java 调用 RMAN 可执行文件。这意味着您可能还必须解析各种 RMAN 命令的输出,以便向用户提供反馈。

如果您想走这条路,您需要使用 Java 中的 Runtime 类。下面是从 Java 调用外部程序的示例。

I don't believe that there is a published API for interacting with RMAN other than the command line. So if you wanted to create a program like Oracle Secure Backup that used RMAN, you'd probably have to invoke the RMAN executable from Java. Which means that you'd probably also have to parse the output of the various RMAN commands in order to provide feedback to the user.

If you want to go down this path, you'd want to use the Runtime class in Java. Here is an example of calling an external program from Java.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文