SQL Server 2005 中 Oracle 的 UTL_TCP 等效项

发布于 2024-10-15 14:31:42 字数 290 浏览 1 评论 0原文

我从一位同事那里收到了一个函数,作为我在我们的一个应用程序中遇到的问题的解决方案,其中包含对 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

柒七 2024-10-22 14:31:42

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文