SQL Azure - copy table between databases

后端 未结 12 2381
天命终不由人
天命终不由人 2020-12-08 13:39

I am trying to run following SQL:

INSERT INTO Suppliers ( [SupplierID], [CompanyName]) 
Select  [SupplierID], [CompanyName] From [AlexDB]..Suppliers
<         


        
12条回答
  •  被撕碎了的回忆
    2020-12-08 14:09

    Ok, i think i found answer - no way. have to move data to client, or do some other tricks. Here a link to article with explanations: Limitations of SQL Azure: only one DB per connection But any other ideas are welcome!

提交回复
热议问题