Learn More than Technology
There is more to our lives than work, and Steve asks that we learn more about other parts of life.
2019-02-08
84 reads
There is more to our lives than work, and Steve asks that we learn more about other parts of life.
2019-02-08
84 reads
Learning active forgiveness can be a challenge, but it may help you build a better team.
2019-02-07
81 reads
Setting up your authorization and security can be fairly easy, but perhaps we ought to consider more complex scenarios.
2019-02-06
65 reads
Disaster recovery planning can be hard, and we often forget about some of the non technical issues.
2019-02-05
70 reads
2019-02-04
80 reads
2019-02-04
1,272 reads
Steve is looking for entertainment suggestions after the Oscar nominations were released.
2019-02-01
71 reads
2020-01-22 (first published: 2019-01-31)
402 reads
2019-01-30
3,139 reads
2019-01-29
118 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