Installing RTM (SQL Server 2008)
I had to install the RTM version of SQL Server 2008 a few days ago since I'm tech reviewing a...
2008-08-12
746 reads
I had to install the RTM version of SQL Server 2008 a few days ago since I'm tech reviewing a...
2008-08-12
746 reads
My friend Jonas Stawski just sent me a note about the upcoming Code Camp in Argentina on October 24, 2008....
2008-08-11
603 reads
I've just posted minutes of the August 2008 user group meeting. We had two great presentations, a short one from...
2008-08-10
692 reads
There are many technical conferences available for SQL Server professionals, such as PASS. I have been lucky enough to go...
2008-08-10
1,036 reads
I read Andy's post Changing Jobs - Should You? today with great interest. I think it is good topic in the...
2008-08-08
1,310 reads
I think most people fall into two groups, the ones that change jobs every year/every time they can make another...
2008-08-07
571 reads
I had to redo SPNs today because we swapped out service accounts on some of our non-production SQL Servers. I...
2008-08-07
3,770 reads
As has widely been announced in the SQL Server community, SQL Server 2008 has RTM'ed. It's now available for download...
2008-08-07
907 reads
More and more I see business people adopt the mindset that any negotiation is raw combat with the goal of...
2008-08-05
607 reads
A little while ago Paul Nielsen tweeted about having free Euro-style SQL stickers. All one had to do was email...
2008-08-04
1,887 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...
Hub Cs:08218154374 Jl. S. Parman No.66, Kebun Kenanga, Kec. Ratu Agung, Kota Bengkulu, Bengkulu...
Hub Cs:08218154374 Jl. Sudirman No.59, Bukit Cangang Kayu Ramang, Kec. Guguk Panjang, Kota Bukittinggi,...
Hub Cs:08218154374 Jl. H. Agus Salim No.10 A, Sawahan, Kec. Padang Tim., Kota Padang,...
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