在 ruby 中使用 sql 加载器
我只是想知道您是否知道在哪里可以找到使用 sql *loader 的 Ruby 脚本的教程或示例?
I just wonder if you know where to find a tutorial or samples of a Ruby script using sql *loader?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Sqlldr 是一个命令行实用程序,它使用控制文件来引导它。
http://download.oracle.com/ docs/cd/B19306_01/server.102/b14215/ldr_concepts.htm#g1013706
使用系统并引用 loader.ctl 控制文件的示例如下:
Sqlldr is a command line utility that uses a control file to guide it.
http://download.oracle.com/docs/cd/B19306_01/server.102/b14215/ldr_concepts.htm#g1013706
An example using system and referencing the loader.ctl control file would be:
首先,您必须确保您的配置(sqlloader 命令行开关 + 控制文件 + 数据文件)在 Ruby 之外工作。然后你可以像前面的答案所说的那样通过 system() 调用它。
First you have to make sure your configuration (sqlloader commandline switches + controlfile + datafile) works outside Ruby. Then you can call it via system() as previous answer said.