To Date or Not To Date….
OK….so I’m in the middle of a very interesting Effective Dating project…basically we’re dealing with some tables that only store...
2009-05-13
1,626 reads
OK….so I’m in the middle of a very interesting Effective Dating project…basically we’re dealing with some tables that only store...
2009-05-13
1,626 reads
Not MVP logo items, as I’m not sure if I really want to wear those. I was somewhat uncomfortable last...
2009-05-13
957 reads
A better explanation from the SQLCAT team in this blog entry. I’d still like to see more, but this makes...
2009-05-13
657 reads
I was watching the TechEd 2009 keynote the other day and there was a lot of time spent on Windows...
2009-05-13
432 reads
I'm still learning and experimenting on the networking side, thought I'd share a few things I've seen or tried lately....
2009-05-12
626 reads
Over the past 2 days, I’ve gone full bore into Windows 7. I’ve installed RC0 on 2 of my laptops,...
2009-05-12
669 reads
Note: I intended to post this last week but life\work\burnout and installing Windows 7 RC got in the way.
Another weekend,...
2009-05-12
435 reads
You will be at least 2 cents richer....
2009-05-12
538 reads
Most of us are tired of this overused, vague term. How many of you have clicked on a 'DBA' job...
2009-05-12
1,202 reads
SQLServerCentral had a press release today about attending the Summit and the networking opportunities, something that I've been blogging about...
2009-05-12
878 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...
WA:08218154393 Jl. Raya Ciawi No.151, Pakemitan, Kec. Ciawi, Kabupaten Tasikmalaya, Jawa Barat 46156
WA:08218154393 Jl. Jenderal Sudirman No.74, Pati Kidul, Kec. Pati, Kabupaten Pati, Jawa Tengah 59114
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