0

フェデレーションでテーブルを作成しようとすると、このエラーが発生します。これを解決するにはどうすればよいですか? 私はアイデンティティを使用する必要があります。すべてが設定されています。しかし、フェデレーションを適用しようとすると、これが発生します。

前もって感謝します。

4

2 に答える 2

2

You will likely need to use guid based keys in a federated DB.

If you think about multiple places generating an integer key, there is a lot of possibility for collision. With federated databases in SQL Azure, you are dealing with the same table split across multiple instances. That is why you cannot have an integer being generated by identity.

于 2013-07-05T12:38:55.117 に答える