简体   繁体   English

将大型Excel工作表加载到Informix表的最佳方法是什么?

[英]What is the best way to load a large Excel sheet to an Informix table?

I want to insert data into an Informix table from an Excel sheet. 我想将数据从Excel工作表插入Informix表中。 This Excel sheet contains nearly 300000 records. 该Excel工作表包含近300000记录。 What is the best way to load this data? 加载此数据的最佳方法是什么? Can I use IBM ipload software to do this work? 我可以使用IBM ipload软件来完成这项工作吗?

I'm not familiar with ipload , but I used LOAD/UNLOAD and UNL format because it is quite easy: 我不熟悉ipload ,但是我使用了LOAD/UNLOAD和UNL格式,因为它很容易:

  1. export Excel file to CSV text 将Excel文件导出为CSV文本
  2. convert it into UNL file readable for Informix dbaccess utility, see: https://www.ibm.com/support/knowledgecenter/SSGU8G_12.1.0/com.ibm.mig.doc/ids_mig_144.htm 将其转换为Informix dbaccess实用程序可读的UNL文件,请参阅: https : //www.ibm.com/support/knowledgecenter/SSGU8G_12.1.0/com.ibm.mig.doc/ids_mig_144.htm
  3. import it using dbaccess LOAD command 使用dbaccess LOAD命令导入它

If you are not familiar with UNL file format then fill your table with some records and export it using UNLOAD statement. 如果您不熟悉UNL文件格式,请在表中填充一些记录,然后使用UNLOAD语句将其导出。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 使用 VBA 在大型 Excel 表中搜索值的最佳方法是什么? - What is the best way to search for a value in a large Excel sheet using VBA? 在Excel中过滤大型列表的最佳方法是什么? - What is the best way to filter a large list in Excel? 将非常大的数组读入 Excel 表的最佳方法 - Best way to read a very large array into excel sheet 使用 Talend Job 在 excel 中添加数据透视表的最佳方法是什么? - What is the best way to add a pivot table sheet in excel using Talend Job? 文本挖掘-挖掘描述性Excel工作表数据的最佳方法是什么 - Text Mining - What is the best way to mine descriptive excel sheet data 处理excel大数据集的最佳方法是什么? - What is the best way to handle large data set for excel? 在 Python 中显示 Excel 工作表的最佳(最简单?)方法 - Best (easiest?) way to display an Excel sheet in Python 通过 REST 调用将多达 100 万条记录导出到 excel 工作表的最佳方法是什么? - What is the best way to export upto 1 million records into excel sheet via REST call? 将大量数据从C#导出到excel的最佳/最快方法是什么? - What is the best / fastest way to export large set of data from C# to excel 使用vb.net在大型excel文件上执行SQL查询的最佳方法是什么? - What's the best way to execute SQL Query on large excel file using vb.net?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM