• Yes - it can link to multiple servers.

    Perhaps this snippet from Books On Line will help:

    Relational Database Engine Architecture Overview

    Database Engine Components

    The relational database server of Microsoft® SQL Server™ 2000 has two main parts: the relational engine and the storage engine. One of the most important architectural changes made in SQL Server version 7.0 was to strictly separate the relational and storage engine components within the server and to have them use the OLE DB API to communicate with each other.

    So, in a sense, you have been using a linked server already.

    The local SQL server has the local relational engine “linked to” the local storage engine.

    You can choose whether the linkage to the linked server is over ODBC or OLEDB.

    It depends which driver you use/how you define the datasource.

    For each linked server in my care I have a folder with setup scripts and basic test scripts.

    Sample contents:

    sp_linkedserver

    go

    sp_tables_ex 'servername'

    go

    sp_columns_ex 'servername'

    go

    select from a sample table using four part name

    Remember that in query analyzer that the selected/highlighted area is executed (F5) not the whole script, so I can pick out the line(s) of interest or just let the whole thing rip.

    Also, I set up a database with views so that an SQL query/script that will run in query analyzer on the target linked server host can run directly. Obviously, if the target linked server is not SQL server, then I have to be selective about what is included.

    I like to have a table in each database just for test purposes. This is nothing fancy, couple of columns and three or four rows.

    All in all, I can quickly verify if everything is working.

    Alternatively, I have actual proven syntax in front of me if something is wrong and my in the middle of the night mental table name, database name and syntax index search isn't quite functioning properly.

    On my PC I have a test database that is mirrored in MS Excel, MS Access, MS SQL server 2000, MS SQL Server 2005, DB2 9, MySQL, Oracle 10g, Sybase ASE 15 and Unisys ClearPath DMSII 51.1.

    Both the SQL Server 2000 and SQL Server 2005 have these databases as linked servers.

    The setup is scripted and so is the basic functionality testing.

    Roy