Can Powershell Receive-Job return a DataSet?
问题 Background Info : I have an application that makes several SQL connections to multiple databases which currently takes a very very long time to execute. Powershell (.NET) will wait for each proceeding " SQL-GET " function to finish before it can fire off the next. I am under the impression I can speed this app up dramatically by firing each " SQL-GET " function in their own background job simultaneously!I will then retrieve the data from each job as they finish. Ideally as a DataSet system