Microsoft
Software
Hardware
Network
Question : how to insert into a table from another table which is at different database
I have a sybase tableA at severqa/A, now i want to insert the values at tableB at serverdev/B, the tables structure are the same.
insert into tableA
select * from serverdev.B.tableB
but it does not work, any idea?
thanks
Answer : how to insert into a table from another table which is at different database
You need to add the schema name when applying a server-based name. That is:
insert into tableA
select * from serverdev.B.dbo.tableB
Random Solutions
SBS2003 - Exchange - Cannot open shared mailbox
Itunes could not connect to the Itunes Store. The network connection timed out.
VB.NET executable error on Excel SaveAs method when run or submitted by SSIS.
New install of SBS 2008 continuously downloads 2.5GB per day (WSUS disabled)
subquery returned more than 1 value: database vendor code 512
EtherChannel on Cisco 2960 switch intermittent dropped packet
Access VBA to stop all macros
SSH console: go to specified folder after login
Invalid object reference error
Shadowing/Overriding in C#