My team development environment is based on local databases (SQL Server) and now I need to move our application to be based on SQL Azure Federations. There's any way to "emulate" SQL Azure Federations in a local environment? Or should our development environment change?

有帮助吗?

解决方案

afaik, you can't.

while you can simulate partitioning of data on your local SQL Server in terms of where they get stored (e.g, table partitions or partitioned views), you can't simulate the FEDERATION statements (i.e., USE FEDERATION, etc...) as they are only valid in Azure SQL Database Federations.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top