Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 SQL Server 2008R2 中,我们是否有一个查询可以找到传递给特定存储过程的参数?
我找到了。查询将是
select PARAMETER_NAME,DATA_TYPE from information_schema.parameters where specific_name = 'StoredProcName'
Sql server 不保留查询执行的历史。所以无论如何都不知道传递给特定存储过程的参数。如果您愿意,您可以在过程本身中编写脚本并将所有值保留在某些表中。或者您可以将查询配置文件数据保存在跟踪文件或某些表等中。