Azure 不支持语句 'CREATE QUEUE'
Statement 'CREATE QUEUE' is not supported in azure
我正在尝试在 Windows Azure 上执行此命令以便能够使用 SqlDependency
USING [mytable]
CREATE QUEUE NewsAddedQueue;
CREATE SERVICE NewsAddedService ON QUEUE NewsAddedQueue
([http://schemas.microsoft.com/SQL/Notifications/PostQueryNotification]);
但它返回了这个错误:
Statement 'CREATE QUEUE' is not supported in this version of SQL Server.
是否有任何解决方案或解决方法?
SQL 服务器的 Service Broker 在 SQL Azure 中不受支持,SQL 服务器中的队列是 Service Broker 的一项功能。
但是,您可以在 UserVoice 上投票支持一项功能请求:Enable SQL Service Broker in SQL Azure
我正在尝试在 Windows Azure 上执行此命令以便能够使用 SqlDependency
USING [mytable]
CREATE QUEUE NewsAddedQueue;
CREATE SERVICE NewsAddedService ON QUEUE NewsAddedQueue
([http://schemas.microsoft.com/SQL/Notifications/PostQueryNotification]);
但它返回了这个错误:
Statement 'CREATE QUEUE' is not supported in this version of SQL Server.
是否有任何解决方案或解决方法?
SQL 服务器的 Service Broker 在 SQL Azure 中不受支持,SQL 服务器中的队列是 Service Broker 的一项功能。
但是,您可以在 UserVoice 上投票支持一项功能请求:Enable SQL Service Broker in SQL Azure