Home Forums SQL Server 7,2000 General Synonym for Qualified name specification of Table([LinkedName].[databasename].[username].[tablename]) RE: Synonym for Qualified name specification of Table([LinkedName].[databasename].[username].[tablename])

  • Not completely sure what you mean, but you can create a view

    create view myview as select * from servera.ownerb.tablec

     

    and then select from this view.