Ejemplo: ejecutar el procedimiento almacenado sql en powershell
$rrex = Invoke-Sqlcmd -ServerInstance "OurServer" -Database "OurDatabase" -Query "EXEC stpGetData"
foreach ($rrec in $rrex)
{
if ($rrec.IdVar -notmatch "V-[1-8]{1}")
{
$rrec.Id
}
}
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)