Data Privacy Grows in California
Changes in data privacy law in California are demanded by consumers.
2021-01-23
68 reads
Changes in data privacy law in California are demanded by consumers.
2021-01-23
68 reads
Steve has a thought on the best way to protect sensitive data.
2021-01-07
136 reads
2020-12-14
132 reads
As legal requirements grow and change, cloud computing might require a new consideration: where we physically store data.
2020-12-10
157 reads
Lots of contact tracing apps are out there. Do you know which ones collect which types of data and what they do with it?
2020-11-24
155 reads
2020-11-17
106 reads
SQL Server shares some data with Microsoft, but the use is documented. Steve sees this as a model for how companies might share information.
2020-10-26
244 reads
Data is important for AI projects, but the ethics and privacy implications are complex. A new project from Microsoft aims to help users control their data and make it available for use.
2020-10-07
121 reads
Today Steve gives a reason why your organization might consider improving its data governance.
2020-09-16
71 reads
2020-08-15
66 reads
By Steve Jones
I had a conversation with a customer asking this question: how can I tell...
By Chris Yates
There was a time when the Chief Data Officer lived in the shadows of...
By Rayis Imayev
"But I don’t want to go among mad people," Alice remarked."Oh, you can’t help...
Comments posted to this topic are about the item Create an HTML Report on...
Hi everyone I am getting an error when I create the index but I...
Good morning all, I have been running into a very random weird issue that...
I have two calls to the GENERATE_SERIES TVF in this code:
SELECT TOP 10 gs.value FROM GENERATE_SERIES(1, 10) AS gs ORDER BY NEWID () OPTION (RECOMPILE); go DECLARE @a int = 10; SELECT TOP (@a) gs.value FROM GENERATE_SERIES(1, @a) AS gs ORDER BY NEWID () OPTION (RECOMPILE);In the actual query plans, what is the estimated number of rows for each batch in SQL Server 2022? See possible answers