Import DBF files into Sql Server
问题 I need a little help figuring this out because I'm new to stored procedures. I am trying to import a .DBF table into Sql Server 2008 using this store procedure. CREATE PROCEDURE spImportDB -- Add the parameters for the stored procedure here AS BEGIN -- Insert statements for procedure here SELECT * into Products FROM OPENROWSET('vfpoledb','C:\Users\Admin\Doc\Data\DBF', 'SELECT * FROM MyTable') END GO I receive this error. The OLE DB provider "vfpoledb" has not been registered.This isn't true,