A simple, blazing fast tool to import Excel files and old DBF files into SQL Server.
DBF files were/are used by
- dBase (Ashton Tate)
- FoxBASE/FoxPro (Fox Software) / Visual FoxPro (Microsoft)
- Clipper (Nantucket / Computer Associates)
- ...
Support for Excel files has been added:
- Since datatypes in Excel are quite fuzzy, the datatypes must be specified explicitly in the second row.
Built on DotNet Core 2.1, works on Windows, Linux, Mac.
dotnet DBFImport.dll -p <dbfpath> -s <server> -d <database> [--codepage <cp>] [--nobulkcopy]
dotnet DBFImport.dll -p <dbfpath> -c <conn> [--codepage <cp>] [--nobulkcopy]
-p, --path Required. Path to DBF file(s)
-s, --server Required. SQL Server (and instance)
-d, --database Required. Database name
-c, --connectionstring Required. Database connection string
--codepage Code page for decoding text
--nobulkcopy Use much slower 'SQL Command' interface, instead of 'SQL BulkCopy'
--help Display this help screen.
--version Display version information.
The database must be an existing database. Every DBF file is imported into a database table with the same name (if the table exists, it is dropped first). A dot ('.') is displayed per 1000 records that are INSERTed in the database.
dotnet DBFImport.dll "c:\My DBF files\*.DBF" DEVSERVER\SQL2017 ImportedDbfFiles
#Imports DBF files:
dotnet DBFImport.dll --path "c:\Data\My DBF files\*.DBF" `
--server DEVSERVER\SQL2017 --database ImportedDbfFiles
#Imports DBF files, and decode text using code page 1252:
dotnet DBFImport.dll --path "c:\Data\My DBF files\*.DBF" `
--server DEVSERVER\SQL2017 --database ImportedDbfFiles --codepage 1252
#Imports DBF files, and connect to SQL Server using connection string:
dotnet DBFImport.dll --path "c:\Data\My DBF files\*.DBF" `
--connectionstring "Server=myServerAddress;Database=myDataBase;User Id=myUsername;Password=myPassword"
PS C:\> dotnet .\DBFImport.dll `
>> --path 'c:\Data\My DBF files\*.DBF' --codepage 1252 `
>> --server 'DEVSERVER\SQL2017' --database 'ImportedDbfFiles'
Processing c:\Data\My DBF files\ABALANS.DBF...
LastUpdate: 16/08/2018
Fields: 14
Records: 5
Importing:
Inserted: 1
MarkedAsDeleted: 4
Duration: 00:00:00.9591436
Processing c:\Data\My DBF files\ANALYT.dbf...
LastUpdate: 26/10/2018
Fields: 22
Records: 33496
Importing: ................................
Inserted: 32402
MarkedAsDeleted: 1094
Duration: 00:00:00.4355719
...
Import finished.
Statistics:
Records: 4869097
Succeeded files: 714
Failed files: 0
Total Duration: 00:02:46.6250966
- Requires dotnet Core 2.1 (available on Windows, Linux, Mac).
- Go to https://getdotnet.org, click "Download", click "Download .net Core Runtime".
- Or install using Chocolatey:
choco install dotnetcore-runtime
- Download & unzip the zip-file DBFImport.zip from https://github.com/WimObiwan/DBFImport/releases/latest
For what it's worth, this is a real situation:
- DBFImport.dll running on high-end laptop with SSD disk, Intel i7, 16 GB RAM.
- DBFImport.dll compiled in Release mode, running on Windows 10 (1804), using dotnet Core 2.1.205 SDK.
- Import of 714 local DBF files, total size 2493014358 bytes (2.32 GiB)
- Containing 4868381 records (excluding those marked for deletion)
- {1} Import into a local SQL Server 2017 Developer Edition.
- {2} Import into a remote SQL Server 2016 Standard Edition (server specs unknown, virtualized, hosted in a datacenter)
- In every test, the existing (filled) tabled was dropped and recreated.
{1} Local SQL Server 2017 | {2} Remote SQL Server 2016 | |
---|---|---|
SQL Command (--nobulkcopy ) |
16:11.421 (971 s) 4823 records/s 2.36 MiB/s |
(*) 50.5 hours 27 records/s 13.39 KiB/s |
SQL BulkCopy | 2:05.705 (126 s) 38729 records/s 18.91 MiB/s |
9:48.394 (588 s) 8274 records/s 4.04 MiB/s |
Speedup of BulkCopy | 7.73x | 308.98x |
(*) This test took ages, these numbers were obtained by extrapolation.
Resource utilization of dotnet.exe:
{1} Local SQL Server 2017 | {2} Remote SQL Server 2016 | |
---|---|---|
SQL Command (--nobulkcopy ) |
CPU: 4-8% (during 16 minutes) Memory: 12.2 MB |
CPU: 0% Memory: 10.9 MB |
SQL BulkCopy | CPU: 12% constantly (during 2 minutes) Memory: 12.1 MB |
CPU: 1-4% (during 10 minutes) Memory: 11.7 MB |
- When using BulkCopy, alle INSERTs are done in Batches of 10000 records. When an error happens, the current batch is rolled back, and the BuldCopy is aborted. All records INSERTed during previous batches will be present in the table.
- When not using BulkCopy, every INSERT is done (separately using a prepared SQL Command), inside a single transaction. This means that when an error occurs, the complete transaction is rolled back, and no records will be present in the database.
Any feedback (issues or pull requests) is welcome!
- Not alle datatypes from the xBase flavors are implemented.
- Memo types (and DBT files) are not (yet) implemented.
- Currently only SQL Server is supported.
There are alternatives:
- Microsoft OLE DB Provider for Visual FoxPro 9.0 (VfpOleDB.dll)
- Visual FoxPro ODBC Driver
- Commercial products
For me these were insufficient because of:
- incompatibilities between 32-bit drivers and 64-bit SQL Sever
- instabilities of SQL Server when using some of the drivers in linked servers