TOAD 导出 Oracle 脚本以编程方式保存数据

发布于 2024-10-06 04:06:27 字数 226 浏览 7 评论 0原文

我有一堆 SELECT 语句脚本,在其中为一堆不同的表提取数据。至于导出该数据并保存它,我必须手动运行每个查询,右键单击并“将数据另存为”选择我的选项,然后单击保存。

有什么东西可以以编程方式包装我的 SELECT 语句,以便当我运行它时,它会自动导出并保存数据,而无需我手动“将数据另存为”?

替代文本

I have a bunch of SELECT statement scripts where I am pulling data for a bunch of different tables. As far as exporting that data and saving it, I have to manually run each query, right click and "Save Data As" select my options, then click save.

Is there any thing I can wrap my SELECT statment programatically in so that when I run it it will automatically export and save the data eliminating the need for me to manually "Save Data As?"

alt text

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

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

发布评论

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

评论(2

要走干脆点 2024-10-13 04:06:27

是的,你可以。 Toad 有一个自动化设计器,可让您自动执行和安排任务。查看实用程序 - Automation Designer 下的内容。

yes, you can. Toad has an automation designer that will allow you to automate and schedule the task. Look under Utilities -- Automation Designer.

貪欢 2024-10-13 04:06:27

完成您想要做的事情的最直接方法是使用 sqlplus< /a> 将所选查询的结果假脱机到 csv 文件。

请参阅此 stackoverflow 答案以获取指导:

我该如何做使用 SQLPLUS 假脱机到 CSV 格式的文件?

Most straightforward way to accomplish what you're trying to do is to use sqlplus to spool results of your select queries into a csv file.

See this stackoverflow answer for directions:

How do I spool to a CSV formatted file using SQLPLUS?

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