如何在 SQL Server 中导入 DBF 文件
如何在 SQL Server 中导入 FoxPro DBF 文件?
How can you import a foxpro DBF file in SQL Server?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何在 SQL Server 中导入 FoxPro DBF 文件?
How can you import a foxpro DBF file in SQL Server?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(5)
使用链接服务器或使用 openrowset,例如
Use a linked server or use openrowset, example
我能够使用 jnovation 的答案,但由于我的字段有问题,我只是选择了特定字段而不是全部字段,例如:
非常令人兴奋,终于有了一个可行的答案,感谢这里的每个人!
I was able to use the answer from jnovation but since there was something wrong with my fields, I simply selected specific fields instead of all, like:
Very exciting to finally have a workable answer thanks to everyone here!
http://elphsoft.com/dbfcommander.html 可以从 DBF 导出到 SQL Server,反之亦然
http://elphsoft.com/dbfcommander.html can export from DBF to SQL Server and vice versa
最终对我们有用的是使用 FoxPro OLEDB 驱动程序 和使用以下语法。在我们的示例中,我们使用 SQL 2008。
将
\\VM-GIS...
替换为 DBF 文件的位置(UNC 或驱动器路径)。另外,将FROM
之后的mymap
替换为不带 .dbf 扩展名的 DBF 文件的名称。What finally worked for us was to use the FoxPro OLEDB Driver and use the following syntax. In our case we are using SQL 2008.
Substitute the
\\VM-GIS...
with the location of your DBF file, either UNC or drive path. Also, substitutemymap
after theFROM
with the name of the DBF file without the .dbf extension.该工具允许您从 SQL Server 导入或从 SQL Server 导入。
This tools allows you to import to and from SQL Server.