Setting Up Pi-Hole.Net
I saw a tweet a short time ago from Drew Furgiuele about pi-hole.net. He noted this was a near use...
2018-07-06
473 reads
I saw a tweet a short time ago from Drew Furgiuele about pi-hole.net. He noted this was a near use...
2018-07-06
473 reads
A SQL Server backup and restore strategy is an essential process to safeguard and protect critical data. The vital role...
2018-07-06
896 reads
Migrating a wordpress blog comes with its various set of challeneges. This installment covers magically changing percent symbols during that migration.
Related Posts:
Summiting that Technical Challenge January 9, 2018
T-SQL...
2018-07-06
11 reads
Conquering Challenges
Months ago, I posted an article about some of the challenges encountered while migrating from one service level to...
2018-07-06
750 reads
Two years running, I will be presenting at SQL Saturday Indy and SQL Saturday Louisville this year again! Come see my session on Getting Started with Machine Learning
2018-07-06
15 reads
One of the tasks I find myself doing on a fairly regular basis is running SSMS as a different Windows...
2018-07-06 (first published: 2018-06-28)
2,689 reads
What is a Domain Independent Cluster? Did you know that you can have a Windows cluster that is a domain independent cluster and run a […]
The post Domain Independent...
2018-07-05
10 reads
What is a Domain Independent Cluster? Did you know that you can have a Windows cluster that is a domain...
2018-07-05
535 reads
What is a Domain Independent Cluster? Did you know that you can have a Windows cluster that is a domain independent cluster and run a SQL Server Availability Group...
2018-07-05
18 reads
While the text of this post contains good information on SSMS object filters, I highly recommend watching this week’s video...
2018-07-05 (first published: 2018-06-26)
2,499 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