Views

  • I have two separate databases on the same server, and they use some overlapping data. What I want to know is: Can you set up a View in one database which contains data from the other database?

  • yes,

    create view N_orders as

    select *

    from northwind.dbo.orders

    return

    create this in pubs to access northwind.

    Steve Jones

    steve@dkranch.net

  • Thanks alot. That was easy!

Viewing 3 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic. Login to reply