如何从DBF文件到SQL Server 2008?

我有一个使用DBF文件的应用程序,我需要将它们导入到sql Server 2008.但是,我还需要修改一些数据,一些列将被添加到表中,而其他列将被弃用.

到目前为止,我正在使用DBF – >访问 – > MS迁移助理 – > sql Server 2008.但是我认为必须有一个更好的方法来处理它.我想离开迁移助理,因为它不允许您在导入时修改数据.

解决方法

看来你没有运气:-(

见本说明:

Note: In sql Server 2005,the sql
Server Import and Export Wizard does
not support importing from or
exporting to dBASE or other DBF files.
To import DBF files,first use
Microsoft Access or Microsoft Excel to
import the data from DBF files into an
Access database or Excel spreadsheets.

Then,use the sql Server Import and
Export Wizard to import the Access
database or Excel spreadsheets that
contain the data from the DBF files.

Microsoft sql Server 2005联机丛书,Choose a Data Source(导入导出向导)

但也许这个其他Stackoverflow问题可以帮助?

How to import a DBF file in SQL Server

或查看一些商业和/或共享软件工具的工作

> EMS Data Import for SQL Server
> DBF to SQL Converter似乎将DBF文件内容转换为sql脚本
> Full Convert Enterprise

相关文章

SELECT a.*,b.dp_name,c.pa_name,fm_name=(CASE WHEN a.fm_n...
if not exists(select name from syscolumns where name=&am...
select a.*,pano=a.pa_no,b.pa_name,f.dp_name,e.fw_state_n...
要在 SQL Server 2019 中设置定时自动重启,可以使用 Window...
您收到的错误消息表明数据库 'EastRiver' 的...
首先我需要查询出需要使用SQL Server Profiler跟踪的数据库标...