Selecting data from different databases

By Bill Graziano on 07 September 2000 | 2 Comments | Tags: SELECT


GianMarco writes "I need to make a view that includes external data in different DB (still sql, on the same server). How can I do it? In acces I can link external table and then create my query but in Sql?"

You can type something like this from any database:

SELECT *
FROM pubs.dbo.authors


Table names (and all database objects) can be qualified with the database name and owner name of the object with the syntax:

. . . FROM DatabaseName.OwnerName.ObjectName . . .

You could also use something like this:

SELECT *
FROM pubs..authors


This comes in handy when your ISP defaults to having you create objects rather than being aliased to the DBO.

Discuss this article: 2 Comments so far. Print this Article. This page has been read 32,541 times.

If you like this article you can sign up for our newsletter. We send it out each week that we post a new article. There's an opt-out link at the bottom of each newsletter so it's easy to unsubscribe at any time.

Email Address:

Email ThisSubscribe to this feedKick itSave to del.icio.usView blog reactions

Related Articles

Joining to the Next Sequential Row (2 April 2008)

Writing Outer Joins in T-SQL (11 February 2008)

How to Use GROUP BY with Distinct Aggregates and Derived tables (31 July 2007)

How to Use GROUP BY in SQL Server (30 July 2007)

SQL Server 2005: Using OVER() with Aggregate Functions (21 May 2007)

Server Side Paging using SQL Server 2005 (4 January 2007)

Using XQuery, New Large DataTypes, and More (9 May 2006)

Counting Parents and Children with Count Distinct (10 January 2006)

Other Recent Forum Posts

odbc error (0 Replies)

help with query (does string exist in string) (1 Reply)

SQL auditing (1 Reply)

Change data type - not enough space (5 Replies)

Query plan (1 Reply)

query efficiency (6 Replies)

why isn't this proc working? (1 Reply)

WHY THIS IS not working? (6 Replies)

Subscribe to SQLTeam.com

Weekly SQL Server newsletter with articles, forum posts, and blog posts via email:

SQLTeam.com Articles via RSS

SQLTeam.com Weblog via RSS

- Advertisement -

SQL Server Jobs