SQL Server 是否具有类似于 Oracle Streams 高级队列的功能?
Oracle Streams AQ(高级队列)提供高度可扩展的数据库支持的队列功能。 SQL Server(任何版本)中是否存在等效功能?
注意:我的意思并不是简单地使用表作为队列,而是特定供应商为数据库平台提供的增强功能。
Oracle Streams AQ (Advanced Queuing) provides highly scalable database-backed queuing functionality. Does an equivalent feature exist in SQL Server (any version)?
Note: I do not mean simply using a table as a queue, but a specific vendor-provided enhancement to the database platform.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
服务代理。这里有一个很好的介绍:SQL Server Service Broker 简介< /a>.自 SQL Server 2005 起可用。大规模、高性能消息传递,内置于 SQL Server 引擎中,完全集成(消息存储在数据库中的隐藏表中,访问 API 完全集成到 T-SQL 语言中,如 开始对话,发送,RECEIVE 动词),支持激活、消息关联等等。它的可扩展性是否足以为 MySpace< 提供消息传递骨干/a>.
Service Broker. A good intro is here: An Introduction to SQL Server Service Broker. Available since SQL Server 2005. High scale, high performance messaging, built into the SQL Server engine, completely integrated (messages are stored in hidden tables in the DB, the access API is fully integrated into T-SQL language as BEGIN DIALOG, SEND, RECEIVE verbs), supports Activation, message correlation and many more. Is it scalable enough to provide the messaging back bone for MySpace.