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
Mac Mail + Exchange 2007 keeping drafts in the 'Drafts' folder after they are sent
Should you dismount exchange database before exhange updates?
Setting Reporting Services data driven subscription Using Web Service
Javascript to toggle DIVs and scroll to anchor link IF there is an anchor link in URL
Nested Gridviews RowDataBound Event Problem
Remote Web Workplace / RDP
What is the next number of this number sequence? - General Math Question
do you know a function like $notes = nl2br( $_POST['notes'] ); in ASP?
How Can I Downgrade my VMWare Fusion for Mac?
vbscript create shortcut script, not completing script, no errors, code attached