News

SQL Server 2016 adds new support for the JSON format when retrieving rows from a database table. Because most Web Services now return data in the JSON format, this support can simplify those Action ...
Invoke-SqlCommand -Sql "Select * from pubs" | Export-Csv -NoTypeInformation c:\pubs.csv; Invoke-Item c:\pubs.csv "This extracts the data, puts it in a comma-separated-format file and then uses ...