Viewing 3 posts - 1 through 3 (of 3 total)
CRLF can be added to the end with these 2 lines:
SET @Cmd = 'cmd.exe /C echo.>>"' + @FileName + '"';
EXEC xp_cmdshell @Cmd, no_output;
—SqlServerBuilds site admin
July 13, 2021 at 9:53 am
Hello,
I'm here again. Again, I kindly recommend you to use a public Google document as your data source, as described here:
How to get SqlServerBuilds data programmatically?
https://sqlserverbuilds.blogspot.com/2019/08/how-to-get-data-programmatically.html
For simplicity, for...
July 12, 2021 at 1:15 pm
Hello,
as a datasource you can use public Google Sheet with all SQL Server builds:
https://docs.google.com/spreadsheets/d/16Ymdz80xlCzb6CwRFVokwo0onkofVYFoSkc7mYe6pgw/view
Download using PowerShell as CSV – DownloadSqlServerBuildsAsCsv.ps1:
$SqlVersion = "2017"
$URL = "https://docs.google.com/spreadsheets/d/16Ymdz80xlCzb6CwRFVokwo0onkofVYFoSkc7mYe6pgw/gviz/tq?tq=select+*+where+A%3D" + $SqlVersion +...
April 21, 2019 at 8:39 am
Viewing 3 posts - 1 through 3 (of 3 total)