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