2019-01-16
148 reads
2019-01-16
148 reads
Being effective is important to Steve. Today he talks about the things you might consider when trying to determine if your group is being effective.
2019-01-15
59 reads
Phil Factor has tried many different ways to remember code and archive old code for reuse, but has yet to find the perfect solution. Does it exist?
2019-01-14
121 reads
Security is important, and Steve wonders if any of us have a list of things we do that improve security.
2019-01-11
86 reads
2019-01-10
115 reads
Failure is one of the ways we get better as software developers. Does that apply to DBAs?
2019-01-09
65 reads
2019-01-07
139 reads
Volunteering is a good thing for us to do, but it can be overwhelming at times.
2019-01-04
78 reads
It seems that many SQL Servers can be lacking memory. Adding more is one way to improve performance, but Steve has other ideas.
2019-01-03
128 reads
2019-01-02
170 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...
Untuk nasabah BCA Bisnis, hubungi Halo BCA Layanan KlikBCA Bisnis 0817 877 114...
hubungi Layanan KlikBCA Bisnis 0817 877 114atau WhatsApp di nomor 0817-877114 KlikBCA Bisnis Halo...
Comments posted to this topic are about the item SSRS Reminded Me of the...
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