I have sharding in SQL Azure.
Basically my structure is like below:
1. Master Database
2. Shard0
3. Shard1
I store all non sharded client into master database but on special request from client, i create seperate shard from them.
While reporting sometimes i need to access master database data from say Shard0.
I have followed all articles available on internet like https://azure.microsoft.com/en-in/documentation/articles/sql-database-elastic-query-vertical-partitioning/
but somehow the [database].[dbo].[tablename] query is not working.
I am using SQL v12 in azure.