SQL 使用 sp_HelpText 查看链接服务器上的存储过程
有人知道如何使用 sp_helptext 查看链接服务器上的存储过程吗?基本上是这样的.我没有该链接服务器的凭据来查看它.
Anyone have an idea about how to use sp_helptext to view a stored procedure on a linked server? basically something like this. I don't have the credentials to that linked server to look at it.
EXEC sp_HelpText '[ServerName].[DatabaseName].dbo.storedProcName'
先谢谢了.
推荐答案
不要使用远程参数在本地调用 sp_helptext,而是使用本地参数远程调用它:
Instead of invoking the sp_helptext locally with a remote argument, invoke it remotely with a local argument:
EXEC [ServerName].[DatabaseName].dbo.sp_HelpText 'storedProcName'
相关文章