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 2008 R2 中有一个存储过程,需要运行一些参数。
有没有办法可以动态检查存储过程以查看需要哪些参数?invoke-sqlcmd它在powershell中被调用
invoke-sqlcmd
至少有三种方法可以获取有关存储过程参数的信息。
尝试
exec sp_help <sproc> select * from information_schema.parameters where specific_name='<sproc>' exec sp_sproc_columns <sproc>
看看哪个最适合您的需求。