How to split a large Excel file into multiple small files in SSIS?

﹥>﹥吖頭↗ 提交于 2020-02-24 11:17:05

问题


I want to read an Excel file which is 250 Mb large and has more than 300 000 rows. So when I try to process it in Excel source in SSIS it takes too much time and at last fails to process. Can anyone tell me how to split the big file into small ones or any other method that can help?


回答1:


Best way is to read data by chunks, i have done this to read huge tables from SQL databases. But to read big excel files, i implemented this in a C# application not in SSIS since it is more complicated. I will provide some links for more info:

  • Reading Huge volume of data from Sqlite to SQL Server fails at pre-execute (SQLite)
  • SSIS failing to save packages and reboots Visual Studio (Oracle)
  • Optimizing SSIS package for millions of rows with Order by / sort in SQL command and Merge Join (MySQL)
  • Getting top n to n rows from db2 (DB2)
  • OutOfMemoryException while trying to read big Excel file into DataTable (Excel C#)

If you need to do this only using SSIS, i can provide a detailed answer later similar to what i provided in the first link above (SQLite).

SchemaMapper: C# schema mapping class library

Recently i started a new project on Git-Hub, which is a class library developed using C#. You can use it to import tabular data from excel, word , powerpoint, text, csv, html, json and xml into SQL server table with a different schema definition using schema mapping approach. It gives the ability to import big excel files. check it out at:

  • SchemaMapper: C# Schema mapping class library

You can follow this Wiki page for a step-by-step guide:

  • Import data from multiple files into one SQL table step by step guide



回答2:


SQLCMD is better because timeout is MUCH longer. But than you have to save your Excel as CSV, and I do not know if that's possible for your.

If you have a CSV file (i.e. BulkDataFile.csv) and you create a file like this:

BULK INSERT dbo.TableForBulkData
FROM 'C:\BulkDataFile.csv'
WITH
(
FIELDTERMINATOR = ',',
ROWTERMINATOR = '\n'
)

Then you can use SQLCMD -E -I import.sql (of you have save the file as import.sql)



来源:https://stackoverflow.com/questions/56406287/how-to-split-a-large-excel-file-into-multiple-small-files-in-ssis

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!