SQL Server 2005 中 Oracle 的 UTL_TCP 等效项
我从一位同事那里收到了一个函数,作为我在我们的一个应用程序中遇到的问题的解决方案,其中包含对 Oracle 库 UTL_TCP (write_text) 的引用。然而,解决方案还不是一个,因为我实际上没有使用 Oracle,而是使用 SQL Server 2005。我已经能够将大部分代码转换为 Transact SQL 语法,但仍然没有找到该库的等效项SQL 服务器。
我知道 UTL_TCP.write_text 只是向另一台服务器上的服务发送消息(参数包括主机、端口和字符集)。
有什么可能的想法吗?
提前致谢!
I received a function from a co worker as a solution for a problem I'm facing with one of our applications that included reference to the Oracle Library UTL_TCP (write_text). However, the solution is not yet one since I'm not actually using Oracle, but SQL Server 2005. I've been able to convert most of the code to Transact SQL syntax, but still haven't found the equivalent for this library in SQL Server.
I know UTL_TCP.write_text just sends a message to a service on another server (parameters include host, port and charset).
Any possible ideas?
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
SQL Server 没有内置支持使用 TSQL 代码中的套接字。最明显的解决方案是编写自己的 CLR 存储过程来包装 System.Net.Sockets.Socket 类。
SQL Server has no built-in support for using sockets from TSQL code. The most obvious solution is to write your own CLR stored procedure(s) to wrap the System.Net.Sockets.Socket class.