用于创建 Oracle SQL Loader 控制文件的用户界面
是否有一个好的用户界面来编写 Oracle SQL Loader 控制文件? PL/SQL Developer 包含一个“文本导入器”功能(让人想起 Excel 导入向导),用于将文本文件导入到表中,但使用专有格式而不是 SQL Loader 格式。 对于 SQL Loader 格式来说,类似的东西会非常有帮助。
Is there a good user interface for authoring Oracle SQL Loader control files? PL/SQL Developer includes a "Text Importer" feature (that reminds one of the Excel import wizard) to import text files into tables, but uses a proprietary format instead of the SQL Loader format. Something like this for the SQL Loader format would be quite helpful.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
TOAD 的答案可能是目前最好的。 然而,在尝试 TOAD SQL Loader 向导时,我对它的可用性感到失望。 它假设我有一个预先存在的表来加载数据。 我正在寻找一种可以让我首先
生成 我找不到任何可以充分满足我的需求的东西,我为此创建了一个实用程序。 该实用程序在某种程度上是根据我的特定需求定制的(固定宽度文件格式、顶部标题、将标题与数据分开的虚线分隔线、列之间的空白),并且仅支持我所需的 SQL 加载程序功能。 如果我有机会将其充实为更通用的东西,我很乐意将其发布到社区。
The TOAD answer is probably the best at present. However, in trying out the TOAD SQL Loader wizard, I was disappointed at the level of usability. It assumed that I had a pre-existing table to load the data into. I was looking for something that would let me first
Since I couldn't find anything that would adequately meet my needs, I created a utility for the purpose. The utility is somewhat custom to my specific needs (fixed-width file format, headers on top, dashed divider separating headers from data, white space between columns) and only supports the SQL Loader features that I required. If I have opportunity to flesh it out to something more universally usable, I'd be happy to post it for the community.
TOAD 有一个执行 SQL*Loads 的接口,它也可以生成控制文件...
http:// /www.toadsoft.com/get2know9/#Loader
TOAD has an interface to do SQL*Loads, it can generate the control files too...
http://www.toadsoft.com/get2know9/#Loader