I'm exporting about 1,000,000 rows via an Invoke-Sqlcmd
script and it exports into a csv around 180MB.
What I would like to do is be able to export it instead into 10 100,000 row files. How do I go about doing this as it doesn't seem to be a feature in Export-Csv
or Invoke-Sqlcmd
that I can find.
Current code:
$dataSubset = "mydata"
$localFile = ("{0}.csv" -f $dataSubset)
$localPath = "my\path"
$serverInstance = "myserver.domain.com"
$database = "mydatabase"
$Query = @"
my crazy ass query
"@
$Results = Invoke-Sqlcmd -QueryTimeout 0 -ServerInstance $ServerInstance -Database $database -Query $Query
$Results | Export-csv $localPath/$localFile -NoTypeInformation
Instead of having a single mydata.csv
I want to have mydata_1.csv
, mydata_2.csv
, etc.