Fulvio,
[quoted text, click to view] > I am trying to create a view on another database on the
> same server which accesses information from the original
> database.
So no need to have linked server for this. see following example.
use pubs
go
create view access_table_from_northwind
--creating view in pubs database referring table of northwind database.
as
select customerid,contactname from northwind.dbo.customers
go
select * from access_table_from_northwind --accessing view from pubs database
[quoted text, click to view] > I don't wish to create a separate logon with all
> the required permissions. This server is SQL Server 2000
> SP3+.
If you are under impression that linked server do not require login then you are wrong it
does require login to connect. I m not saying you to create a seperate login for this,
just grant database access to this login to the respective database and grant SELECT
permission to required tables.
--
- Vishal