使用 JDBC 将 Sql 查询结果集导出到逗号分隔的文件
我正在从 unix 目录中轮询文件,并使用创建外部目录 以下命令,并将文件中的数据作为表加载。稍后我将在表上应用 where 条件,并且应使用 JDBC 将结果集导出为逗号分隔的 csv 文件。请让我知道这是否可能,或者请给我指出一些博客。
Create or replace directory
和
Alter table
I am polling a file from a unix directory , and creating a external directory using
following command, and loading the data in the file as table. Later i am applying where condition on the table and the resultset should be exported as a comma separated csv file using JDBC .kindly let me know is it possible, or please point me to some blog .
Create or replace directory
and
Alter table
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一个非常良好的起点。我个人使用了一些受其示例启发的代码,将结果集转储到 SQL 文件中效果很好,您可以轻松地将其加载到表中。您可以在几分钟内根据您的需求进行调整。
Here is a very good starting place. I personnally use some code inspired by their example and it works great to dump a resultset into a SQL file that you can load into a table very easily. You could adapt it to your needs in a few minutes.