March 4, 2012 at 11:45 pm
Comments posted to this topic are about the item Working with Perfmon CSV logs in Powershell
March 6, 2012 at 5:54 am
Very interesting!
Just one question, what does this mean:
When working with large CSV files, instead of piping the output of Import-Csv cmdlet is a little faster and does not consume a whole lot of memory.
Which method is faster?
March 6, 2012 at 3:29 pm
Nice way to make PoSh do the digging for ya. 😎
March 7, 2012 at 7:18 am
alexf01 (3/6/2012)
Very interesting!Just one question, what does this mean:
When working with large CSV files, instead of piping the output of Import-Csv cmdlet is a little faster and does not consume a whole lot of memory.
Which method is faster?
Apologize for the ambiguity. When you read the whole CSV file into a variable it is going to consume memory to keep the object in memory.
What I meant was that "when working with large CSV files, piping the output of Import-CSV cmdlet is a little faster and does not consume a whole lot of memory."
March 7, 2012 at 7:33 am
I see. Thanks!
Viewing 5 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic. Login to reply