从通用数据库文件导入
我需要将数据从普适数据库导入到sql server。我已经安装了 pervasive db client & oledb 提供者。我的普遍数据库是文件格式的(带有 .DAT 文件的文件夹)。我想知道如何从这些文件中读取数据。当我使用连接字符串作为“Provider=PervasiveOLEDB;Data Source=C:\datafilesDirectory;”时它在“测试连接”中给出未指定的错误。因为我在这里遗漏了一些东西?请帮忙!!
I need to import data from pervasive database to sql server. I have installed pervasive db claient & oledb provider. the pervasive database with me is in file format (folder with .DAT files). I would like to know how to read data from these files. when i used connection string as "Provider=PervasiveOLEDB;Data Source=C:\datafilesDirectory;" it gives unspecified error in 'Test Connection'. As i missing something here? Please help!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否有描述数据文件的 DDF 文件(FILE.DDF、FIELD.DDF、INDEX.DDF)? Btrieve 文件中不存储字段信息。如果您没有 DDF 文件,则需要它们才能使用 OLEBD(或 ODBC 或 ADO.NET 或任何其他关系方法)。
同时,您需要的不仅仅是 PSQL“客户端”。您将需要一个可用于读取文件的 PSQL 引擎。您是否安装了引擎(工作组或服务器)或客户端?
Do you have DDF files (FILE.DDF, FIELD.DDF, INDEX.DDF) that describe the data files? Btrieve files do not store field information in them. If you don't have DDF files, you will need them in order to use OLEBD (or ODBC or ADO.NET or any other relational method).
At the same time, you will need more than just the PSQL "Client". You will need a PSQL engine available to read the files. Did you install an engine (workgroup or server) or client?