Jet.oledb provider with Access 97 
Author Message
 Jet.oledb provider with Access 97

Hello everone,

I have a SQL server 7.0 and Access 97. I tried to retrieve data from Access
into SQL server using openrowset function and got an error :OLE DB provider
'microsoft.jet.oledb.4.0' reported an error :'[OLE/DB provider returned
message: Could not find installable ISAM.]'. Can some tell me what is wrong
and what should I do to fix it.

My query looks like:

select * from openrowset("microsoft.jet.oledb.4.0", "d:\www_web.mdb",
customer)

Thanks in advance.

Dan



Tue, 20 Jan 2004 01:23:32 GMT  
 Jet.oledb provider with Access 97
The example in SQL Server Books Online works quite well:

USE pubs
GO
SELECT a.*
FROM OPENROWSET('Microsoft.Jet.OLEDB.4.0',
    'c:\northwind.mdb';'admin';'', Orders)
    AS a
GO

The problem is just that you're not passing the authentication information
(username and password); Jet, by default, uses Admin and no password.

Steven Bras, MCSD
Microsoft Developer Support
Visual Basic WebData



Tue, 20 Jan 2004 03:47:23 GMT  
 Jet.oledb provider with Access 97

Thanks a lot. It works.

Dan


Quote:
> The example in SQL Server Books Online works quite well:

> USE pubs
> GO
> SELECT a.*
> FROM OPENROWSET('Microsoft.Jet.OLEDB.4.0',
>     'c:\northwind.mdb';'admin';'', Orders)
>     AS a
> GO

> The problem is just that you're not passing the authentication information
> (username and password); Jet, by default, uses Admin and no password.

> Steven Bras, MCSD
> Microsoft Developer Support
> Visual Basic WebData



Tue, 20 Jan 2004 22:07:58 GMT  
 
 [ 3 post ] 

 Relevant Pages 

1. Microsoft.Jet.OLEDB.4.0 Provider not working with Access 97 MDB

2. ADOX, Jet OLEDB 4 & Access 97 .mdb

3. Replace OLEDB provider Jet 3.51 with Jet 4.0

4. Microsoft.Jet.OLEDB.3.51 provider not registered

5. Microsoft Jet OLEDB Provider 3.51: Does it support parameterized querys

6. Problem using OLEDB provider for Jet 3.51

7. Jet OLEDB provider: Valid wildcard SELECT returns nothing in ASP

8. Microsoft.Jet.OLEDB.4.0 OLE DB provider

9. How to set Format property in ACCESS2k thru ADOX using JET OLEDB 4.0 provider

10. Updating child recordsets using the Microsoft.Jet.OLEDB.3.51 provider

11. Jet OLEDB.4.0 and MSDataShape Providers

12. Field properties bug in Jet.OLEDB provider SP5

 

 
Powered by phpBB® Forum Software