I can see my SQL Azure database in SQL Server Management Studio, and am able to execute queries, create objects, etc etc, in SSMS. The VPN is working.
I know there are (or will be) synchronization utilities available from Microsoft, but let's say we didn't want to use them. Is it possible for a stored procedure, running locally in an on-premise instance, to establish a connection to the remote (cloud) database, and then reference a table in the cloud as if it were local?
insert azure.dbo.clients CLOUD
select * from mylocaldb.dbo.clients EARTH
where EARTH.lastSyncDate is null
Is it possible to connect to the cloud database as to a linked server, to permit heterogeneous (earth/cloud) queries and data flow?