Both these methods are on the assumption that you have administrative access
to both db and they are on the same network.
[Link Table]
If you are going to use the linked table method you would open MS Access
highlight the table you want to link to SQL select new>link table then in
the file types menu select ODBC Databases You will then be prompted to
select a source, select new SQL Server and browse to the server you are
connecting to just follow all the prompts.
[SQL View]
To create a view in SQL it would be something like this.
CREATE VIEW MyView AS
SELECT *
FROM OPENROWSET('Microsoft.Jet.OLEDB.4.0',
'c:\MyAccessdb.mdb';'MyUserName';'MyPassWord', MyTableName)
There is more information at the following URL:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/tsqlref/ts_oa-oz_78z8.asp
Geo
[quoted text, click to view] "Mike" <Mike@discussions.microsoft.com> wrote in message
news:D06A6920-FEFE-42A5-9B59-99F0AB75111B@microsoft.com...
> I,m sorry but could you please give me more details?
>
> Regards,
> Mike.
>
> "Geo" wrote:
>
> > You can create a link from Access to SQL server using new > link table
and
> > selecting ODBC Databases.
> > You could also create a view of the MS db table from within SQL server.
> > Hope this helps.
> > Geo
> > "Mike" <Mike@discussions.microsoft.com> wrote in message
> > news:32E6E7A1-BEF2-4F5F-9F38-EB97BFF47F0A@microsoft.com...
> > > Hi all,
> > > I have a DB on SQL Server and I need to create a table that is a link
to a
> > > table inside another MsAccess DB. How can I do this?
> > > I'd reply the same behaviour like I do in MsAccess when I run the
command
> > > "Link table".
> > > Any help is appreciated.
> > >
> > > Regard,
> > > Mike.
> >
> >
> >