Oracle sqlload:将源字段拆分为几列?

发布于 2024-10-25 11:47:21 字数 151 浏览 2 评论 0原文

我有一个源文件,我想通过 Oracle 10g 中的 sqlload 加载,

问题是源字段之一可以大于 4000 个字符。是否可以告诉 Oracle 将源字段拆分为几列?
假设一列第一个字符为 4000 个,第二列为下一个字符 4000 个,

谢谢

i have a source file i want to load through sqlload in my Oracle 10g

the problem is one of the source field can be larger than 4000 character. Is it possible to tell oracle to split a source field in several columns ?
let's say one column would have 4000 first character and the second one the 4000 next

Thanks

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

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

发布评论

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

评论(1

我将其加载到 CLOB 中,然后在数据库端使用 DBMS_LOB.SUBSTR 进行拆分(如果需要)。但是是否有关键的业务原因需要将其放入多个 varchar2 列中,或者是否可以将其保留在 CLOB 中?

I'd load it into a CLOB and then do the splitting (if necessary) using DBMS_LOB.SUBSTR over on the database side. But is there a critical business reason to get it into multiple varchar2 columns, or could it just stay in the CLOB?

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