通过Oracle数据库链接调用SQL Server函数
有没有办法使用到 SQL Server 实例的数据库链接从 Oracle 执行以下语句,而无需在目标实例上创建视图?
select db_name(), @@SERVERNAME
我已经尝试过,
"select db_name(), @@SERVERNAME"@DbLink
但没有成功。
任何帮助将不胜感激
Is there a way to execute the following statement from Oracle using a database link to a SQL Server instance without having to create a view on the target instance?
select db_name(), @@SERVERNAME
I have tried
"select db_name(), @@SERVERNAME"@DbLink
but that did not succeed.
Any help would be greatly appreciated
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这里:
但是你需要告诉dblink哪些功能必须通过dblink可用。请参阅手册:http://docs.oracle。 com/cd/E11882_01/server.112/e11050/admin.htm#i1007467
Here:
But you need to tell the dblink which functions must be available through the dblink. See the manual at: http://docs.oracle.com/cd/E11882_01/server.112/e11050/admin.htm#i1007467