If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > Microsoft SQL Server > how to join 2 table, different database and different server

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 03-04-10, 04:12
jigujigu2 jigujigu2 is offline
Registered User
 
Join Date: Nov 2009
Posts: 17
how to join 2 table, different database and different server

hi, all

i have 2 tables,. same structure, but the location of the each table is different

below is the query (if same server)
Code:
SELECT  db1.dbo.table1.field_id,db2.dbo.table2.field_name 
FROM    db1.dbo.table1 INNER JOIN
                      db1.dbo.table2  ON db1.dbo.table1 =  db1.dbo.table2
the problem is the server is different computer, different IP and different authentication..how to i join that tables ?

need help.

thank's
Jigujigu
Reply With Quote
  #2 (permalink)  
Old 03-04-10, 04:14
pootle flump pootle flump is offline
King of Understatement
 
Join Date: Feb 2004
Location: One Flump in One Place
Posts: 14,905
You need to create a linked server and use four part naming.
__________________
Testimonial:
Quote:
pootle flump
ur codings are working excelent.
Reply With Quote
  #3 (permalink)  
Old 03-04-10, 09:14
jigujigu2 jigujigu2 is offline
Registered User
 
Join Date: Nov 2009
Posts: 17
Quote:
Originally Posted by pootle flump View Post
You need to create a linked server and use four part naming.
can you expland to me more detail....
i know nothing about create a linked server...

thank's
Jigujigu
Reply With Quote
  #4 (permalink)  
Old 03-04-10, 09:19
pootle flump pootle flump is offline
King of Understatement
 
Join Date: Feb 2004
Location: One Flump in One Place
Posts: 14,905
__________________
Testimonial:
Quote:
pootle flump
ur codings are working excelent.
Reply With Quote
  #5 (permalink)  
Old 03-14-10, 14:25
jigujigu2 jigujigu2 is offline
Registered User
 
Join Date: Nov 2009
Posts: 17
finally done..

thank's

Jigu
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On