我正在尝试将表的数据复制testdabse.invoice
到basecampdev.invoice
表中。
testdabse
是本地数据库,而basecampdev
在服务器中。
我将数据复制到另一个表的查询不起作用,它说
Invalid object name 'basecampdev.dbo.invoice'.
我一直在阅读此文档,但发现很难理解和理解。
这些是服务器提供的信息
Server type: Database Engine
Server name: server.database.windows.net (this is not the real name)
Authentication: SQL Server Authentication
Login: myusername
Password: mypassword
如何连接到服务器以便能够运行此查询
INSERT INTO [basecampdev].[dbo].[invoice]
([InvoiceNumber]
,[TotalAmount]
,[IsActive]
,[CreatedBy]
,[UpdatedBy]
,[CreatedDate]
,[UpdatedDate]
,[Remarks])
SELECT [InvoiceNumber]
,[TotalAmount]
,[IsActive]
,[CreatedBy]
,[UpdatedBy]
,[CreatedDate]
,[UpdatedDate]
,[Remarks] FROM [testdabse].[dbo].[invoice]
截屏