将表导入数据库(DB2)
我有一个包含 XML 类型列的表。我使用 IXF 格式导出该表。当我尝试对此表进行导入时,它给出错误,提示您可以使用文件类型修饰符 (FORCECREATE) 或您应该使用 db2look 工具从表中提取信息,然后进行插入。 我不知道如何使用文件类型修改器(FORCECREATE)?有人可以解释一下吗?
db2look 工具是什么?我在哪里可以找到这个工具?如何使用?我搜索了很多,但没有网站谈论这些工具!
I have a table which contains an XML type column. I make export for this table using IXF format. when I tried to make import for this table, it gives me error saying you may use File Type Modifier (FORCECREATE) or You should use db2look tool to extract information from the table then make Insert.
I do not know how to use File Type Modifier (FORCECREATE)? Can anyone expalin?
What is db2look tool? where can I find this tool? How to use it? I searched alot but no website talks about those tools!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您所写的内容可能有多种可能的原因。如果没有具体的错误消息,很难找到确切的问题。在此页面上,您会发现几个需要使用 FORCECREATE 的问题:链接
通过该链接,您也许能够纠正原因,而无需使用 FORCECREATE 或 DB2LOOK。
使用 FORCECREATE 导入:
修饰符只是 import-command 的一个参数:
您可以在命令行中获取 import-command 的简短参考:
或者阅读 IBMs 中非常全面的详细信息 在线文档
DB2LOOK -Tool:
db2look-tool 是 db2 的一部分(至少在 Windows 上的 v.9.5 中)。只需在命令行中输入
db2look
,如果已安装,您将获得简短的参数概述。同样,IBM 在线文档将为您提供详细信息。What you wrote could have several possible causes. Without the concrete error message it's hard to find the exact problem. On this page you find several problems that require the use of FORCECREATE: Link
With that you might be able to correct the cause and don't need to use FORCECREATE or DB2LOOK.
Import with FORCECREATE:
The modifier is just an parameter for the import-command:
You can get an short reference for the import-command in the commandline:
Or read the details in IBMs very comprehensive online docmentation
DB2LOOK-Tool:
The db2look-tool ist part of db2 (at least in v.9.5 on windows). Just enter
db2look
in commandline, if it is installed you get short parameter overview. Again, the IBM online documentation would provide you with detailed information.