Date Fun with SQL Server
I saw a people discussing date formats on Twitter after PASS put out an advertisement for a webinar with a...
2018-04-03
398 reads
I saw a people discussing date formats on Twitter after PASS put out an advertisement for a webinar with a...
2018-04-03
398 reads
2018-04-03
244 reads
2018-04-02
83 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2018-03-30 (first published: 2018-03-22)
2,644 reads
2018-03-30
833 reads
2018-03-29
153 reads
This is the third update for my goals for 2018. This is about 3 weeks after the last update, and...
2018-03-29
991 reads
2018-03-29
2,311 reads
SQLServerCentral has been stuck in the past for some time, but we’ve finally decided to move. I’ve been asking for...
2018-03-28
1,473 reads
2018-03-28
772 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