Here is a sample using linkserver, replace with your mdb
location
EXEC sp_addlinkedserver @server = access ,
@srvproduct = 'Jet 4.0',
@provider = 'Microsoft.Jet.OLEDB.4.0',
@datasrc = 'c:\test\northwind.mdb',
@location = NULL,
@provstr = NULL,
@catalog = NULL
GO
--Set up login mappings
EXEC sp_addlinkedsrvlogin @rmtsrvname = Access,
@useself = True,
@locallogin = NULL,
@rmtuser = admin,
@rmtpassword = NULL
[quoted text, click to view] >-----Original Message-----
>Have you looked at Linked Servers in BOL ?
>
>--
>
>Allan Mitchell (Microsoft SQL Server MVP)
>MCSE,MCDBA
>
www.SQLDTS.com >I support PASS - the definitive, global community
>for SQL Server professionals -
http://www.sqlpass.org >
>
>"xiaowei" <anonymous@discussions.microsoft.com> wrote in
message
>news:036601c3a24c$2986cc20$a501280a@phx.gbl...
>> Is there any way in sql server to link a table in ODBC
>> data source(Access database on our network)?
>>
>> Thanks
>
>
>.