Getting started with SQL 2019 big data cluster in Azure
Installing and connecting to SQL 2019 big data cluster
2020-06-26 (first published: 2019-01-17)
3,171 reads
Installing and connecting to SQL 2019 big data cluster
2020-06-26 (first published: 2019-01-17)
3,171 reads
It is not only the data within the database that requires protection but any report generated using SQL Server needs to be protected before being mailed
2010-10-28
12,100 reads
In this article, learn about the risks of changing server collation as well as how to go about making this change.
2010-09-20
15,176 reads
Learn about how you might solve some issues running SSIS packages using Excel on a Windows 2008 x64 Machine.
2010-07-28
7,280 reads
By Patrick
SQL Server Audit is an efficient way to track and log events that occur...
I presented at SQL Saturday Pittshburgh this past weekend about populating your data warehouse...
By Steve Jones
A customer was asking recently about the RPO for their estate, and I showed...
Comments posted to this topic are about the item The Modern Algorithm of Chance
Comments posted to this topic are about the item Use Logic Apps To Save...
Comments posted to this topic are about the item AWS Services Using SQL for...
I have this data in my Customer table:
CustomerID CustomerName 1 Steve 2 Andy 3 Brian 4 Allen 5 DevinI run this code:
SELECT t.CustomerID , c.value FROM ( SELECT CustomerID , STRING_AGG (CustomerName, ',') AS me FROM customer GROUP BY CustomerID) t CROSS APPLY STRING_SPLIT(me, ',') c;What is returned? See possible answers