SQL Saturday as an Attendee
Last week I did something that many people have already done. However this was my first experience, and I really...
2015-09-25
661 reads
Last week I did something that many people have already done. However this was my first experience, and I really...
2015-09-25
661 reads
2015-09-25
1,313 reads
Steve Jones talks a bit about the new data masking feature in SQL Server 2016 and how useful it can be.
2015-09-24
140 reads
2015-09-24
1,723 reads
Today Steve Jones looks at the targeted attacks by hackers against individual security professionals.
2015-09-23
128 reads
2015-09-23
1,677 reads
tl,dr; We’re raising money for Doctors without Borders. Donate and a few of us will dress up at the Summit....
2015-09-22
683 reads
The challenges of data growth and sprawl can be compounded by the variety of tools and platforms available. Steve Jones notes that you might need to learn a bit about different technologies.
2015-09-22
139 reads
2015-09-22
1,573 reads
The issue of who owns data, and who is responsible is one that our world hasn't defined well. Steve Jones has a few thoughts on potential issues for data professionals.
2015-09-21
125 reads
By Steve Jones
“Don’t aim to have others like you; aim to have them respect you.” –...
If you work with data pipelines, SQL, notebooks, or machine learning models, a Mac...
By ChrisJenkins
Have you been thinking about migrating your reporting to Microsoft Fabric or Snowflake but...
Comments posted to this topic are about the item SQL Art, Part 4: Happy...
hi , a new user wants to be able to add sql agent jobs...
Comments posted to this topic are about the item SQL Server Enum Implementation: A...
In SQL Server 2025, I have a table (dbo.UserPermission) that contains this data:
UserID UserPermissions 15 23 37What is returned when I run this code:
select bit_count(UserPermissions) as PermissionCount from dbo.UserPermission where UserID = 3;See possible answers