Oct 20, 2003 #1 TommyTea Programmer Nov 7, 2002 43 US I need to create a view in my database that uses a table in another database and on a different server.
I need to create a view in my database that uses a table in another database and on a different server.
Oct 20, 2003 1 #2 JamesLean Programmer Dec 13, 2002 3,059 GB Look up "linked servers" in BOL. After setting one up, just qualify the table names like this: Code: SELECT * FROM server.database.owner.table --James Upvote 0 Downvote
Look up "linked servers" in BOL. After setting one up, just qualify the table names like this: Code: SELECT * FROM server.database.owner.table --James
Oct 20, 2003 Thread starter #3 TommyTea Programmer Nov 7, 2002 43 US Thank you. that should do it. Upvote 0 Downvote