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 |
|
keithc1
Yak Posting Veteran
88 Posts |
Posted - 2004-06-29 : 17:27:18
|
| I'm trying to select records into a linked server but the linked server is an instance name.select column into DataBase.Tablefrom ServerName\ServerMame.DataBase.dbo.Tableand it is giving me a syntax errorLine 2: Incorrect syntax near '\'.basicly, How do i query to a linked server with the servername\servername format using 4 part namingKeithc MCSE MCSA |
|
|
tkizer
Almighty SQL Goddess
38200 Posts |
Posted - 2004-06-29 : 17:40:17
|
| from [ServerName\ServerMame].DataBase.dbo.TableTara |
 |
|
|
keithc1
Yak Posting Veteran
88 Posts |
Posted - 2004-06-29 : 17:56:52
|
| ya i forgot the brackets (Kicks himself) Thanks Tara :)Keithc MCSE MCSA |
 |
|
|
|
|
|