Table and Index Partitioning Demo
I get a lot of requests for explanations about the different concepts and the easiest way to demo partitioning in...
2009-11-03
356 reads
I get a lot of requests for explanations about the different concepts and the easiest way to demo partitioning in...
2009-11-03
356 reads
I was working with a team of developers this week who were having the hardest time finding the keystroke to...
2009-11-03
330 reads
Each year I host an opening night party at the PASS Summit. I set up a deal years ago with...
2009-11-03
1,433 reads
We are all facing the challenges of this new economy. There are very few people and industries in the world...
2009-11-03
301 reads
Recently I was working with client and they were discussing the pet peeves of some of the new intellisense features...
2009-11-03
401 reads
Greg emailed me a great question from my week of warehousing webinar the other day. We were discussing disk performance...
2009-11-03
270 reads
How exciting was last week! Some of the top experts in the country all gathered together through support from SQLServerCentral.com,...
2009-11-03
204 reads
Registration for the 2009 PASS Community Summit started out strong with many attendees registering early the Sunday evening before the...
2009-11-02
485 reads
Flew out of Orlando direct to Seattle, leaving at 8:30 and arriving about 1130 am Seattle time. Nice flight, no...
2009-11-02
359 reads
I'm heading to Seattle in a couple hours. Bags packed, I've completed my run for the day, and getting ready...
2009-11-02
365 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. Jenderal Basuki Rahmat No.70-74, Klojen, Kec. Klojen, Kota Malang, Jawa Timur 65111
WA:08218154393 JL. JENDRAL SUDIRMAN NO. 18A RT.007 RW.000, BANTUL WARUNG, DESA. KEL. BANTUL, KEC....
WhatsApp:0821-4447-7715 JL. JENDRAL SUDIRMAN NO. 18A RT.007 RW.000, BANTUL WARUNG, DESA. KEL. BANTUL, KEC....
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