PowerShell scripts for more object-oriented ETL than SSIS
Copy-SqlTable "I just need to copy a table between remote servers and don't have the time for SSIS" Start-JobAndWait "A workflow requires a SQL job on a remote server to be executed synchronously"
USAGE EXAMPLE: powershell.exe -NoLogo -NoProfile -executionpolicy RemoteSigned -Command "&'Y:\scripts\Copy-SqlTable.ps1' -SrcServer 'dwdb02' -SrcDatabase 'Reports' -SrcTable 'KioskAnalytics' -DestServer 'mktsvcdb02' -DestDatabase 'Reports' -Truncate"
USAGE EXAMPLE: powershell.exe -NoLogo -NoProfile -executionpolicy RemoteSigned -Command "&'Y:\scripts\Start-JobAndWait.ps1' -ServerName 'proddb01' -JobName 'ExecuteScoringProcess'"