I am trying to run the following SQL:
INSERT INTO Suppliers ( [SupplierID], [CompanyName])
Select [SupplierID], [CompanyName] From [AlexDB]..Suppliers
and got an error "reference to a database and/or server name it is not supported in this version of SQL server"
Any idea how to copy data between databases "inside" the server? I can load data to the client and then back to the server, but this is very slow.