TOAD 导出 Oracle 脚本以编程方式保存数据
我有一堆 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?"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,你可以。 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.
完成您想要做的事情的最直接方法是使用
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 acsv
file.See this stackoverflow answer for directions:
How do I spool to a CSV formatted file using SQLPLUS?