我有一个存储过程,它返回一个值0或1.这在powershell中是必需的,以确定脚本或用户应该采取的后续步骤。问题是,我无法找到有关如何访问该值的任何文档。
这是powershell invoke-sqlcmd命令:
this.$moment();
继承函数storedProcedureQuery:
invoke-sqlcmd -ServerInstance $Server -query (storedProcedureQuery $firstName $lastName "*" "*" "*") -ErrorVariable var | Format-Table;
非常感谢任何帮助。