Home Forums Programming Powershell Inserting into table with Powershell RE: Inserting into table with Powershell

  • I use SQLPSx sqlpsx.codeplex.com , just for convenience 😀

    [HashTable]$SprocParams = @{}

    foreach ( $c in $RecordFields ) {

    $SprocParams.Add($c.Name , [string]$CurrentRow.$($c.Name) )

    }

    $rc = Invoke-StoredProcedure -connection "Server=$TargetSQLServer;Database=$SQLDb;Trusted_Connection=True;Connect Timeout=5;Application Name=$Global:ApplicationName;Workstation Id=$env:COMPUTERNAME;" -timeout 5 -storedProcName 'myschema.mysproc' -parameters $SprocParams

    Johan

    Learn to play, play to learn !

    Dont drive faster than your guardian angel can fly ...
    but keeping both feet on the ground wont get you anywhere :w00t:

    - How to post Performance Problems
    - How to post data/code to get the best help[/url]

    - How to prevent a sore throat after hours of presenting ppt

    press F1 for solution, press shift+F1 for urgent solution 😀

    Need a bit of Powershell? How about this

    Who am I ? Sometimes this is me but most of the time this is me