The Creepiness of AI
It seems that many companies are implementing AI into their systems. Steve notes that this isn't always a good idea.
2019-03-05
88 reads
It seems that many companies are implementing AI into their systems. Steve notes that this isn't always a good idea.
2019-03-05
88 reads
2019-03-04
106 reads
2019-03-04
113 reads
This week Steve is wondering about the use of schemas for security or other purposes.
2019-03-01
509 reads
2020-02-06 (first published: 2019-02-28)
385 reads
Today Steve gives reasons why he thinks the RDBMS is often better than a NoSQL database of any sort.
2019-02-27
103 reads
Data warehouses and lakes are often loaded from other data, so should they be immutable?
2019-02-26
810 reads
Will employee data become a target of hackers? It's likely more a movie plot than reality, at least, Steve hopes so.
2019-02-25
81 reads
One thing I learned while working as a database administrator over 17 years is the importance of teamwork across departments. Many times, we have to rely on network and SAN administrator to make changes to their environments in order to make SQL Server run more efficiently. There are times where the storage and network create […]
2019-02-25
65 reads
A company is letting companies trade vacation for payments against student loan debt.
2019-02-22
73 reads
By Steve Jones
I wrote about learning today for the editorial: I Can’t Make You Learn. I...
By ReviewMyDB
Fabric has CI/CD built in, but if you've tried to use it for database...
By Steve Jones
attriage – n. the state of having lost all control over how you feel...
Comments posted to this topic are about the item SSRS Reminded Me of the...
I have a need to execute a stored procedure and return the results to...
Title pretty much says it all - can this be done? I've tried several...
In SQL Server 2025, I have a table (dbo.UserPermission) that contains this data:
UserID UserPermissions 15 23 37 4 NULLWhat is returned when I run this code:
select bit_count(UserPermissions) as PermissionCount from dbo.UserPermission where UserID = 4;See possible answers