Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
rohans
Posting Yak Master
194 Posts |
Posted - 2004-08-12 : 10:51:16
|
| I set up a linked server in SQL 2000 to connect to another SQL 2000 server. The connection works and I am seeing the tables in EM. When I try querying from Query Analyzer using the following querySELECT * FROM [linked_name].DBname.tblnameThe error is: Server: Msg 208, Level 16, State 1, Line 1Invalid object name 'linked_name.DBname.tblname'.All help appreciated. |
|
|
derrickleggett
Pointy Haired Yak DBA
4184 Posts |
Posted - 2004-08-12 : 11:05:00
|
| SELECT * FROM [linked_name].DBname.dbo.tblnameMeanOldDBAderrickleggett@hotmail.comWhen life gives you a lemon, fire the DBA. |
 |
|
|
rohans
Posting Yak Master
194 Posts |
|
|
|
|
|