SQLServerCentral.com Track at SQL Server Has Record Attendance
This past week, November 3-4, the SQLServerCentral.com track at SQL Server Connections has a record 431 attendees. Below are some...
2010-11-06
663 reads
This past week, November 3-4, the SQLServerCentral.com track at SQL Server Connections has a record 431 attendees. Below are some...
2010-11-06
663 reads
Final post for the countdown – a little later in the week than I wanted. Right now there is less than...
2010-11-05
619 reads
There are a handful of scripts out there to compress all of of the objects in your SQL 2008 database...
2010-11-05
2,026 reads
Tuesday
PASS - Day One Opening Keynote (Ted Kummert) Live Stream
Wednesday
PASS - Day Two Keynote (Quentin Clark) Live Stream
PASS - Women in Technology Luncheon...
2010-11-05
730 reads
Unlike fine wine, you typically wouldn’t want your statistics to be aged. At least for tables that are being updated...
2010-11-05
11,836 reads
I just wanted to help spread the word that the PASS Summit Keynotes will be streamed live via LiveMeeting next...
2010-11-05
593 reads
The 2010 PASS Summit is a few days away and my schedule has gone from wide open to booked solid!...
2010-11-05
650 reads
I’m doing the final and somewhat hectic work of preparing for the trip to Seattle for the PASS Summit. It’ll...
2010-11-05
685 reads
Earlier this week I posted the announcement about an informal get together on Sunday night November 7th for those arriving...
2010-11-05
1,094 reads
For the third year in a row, we’ve had a blockbuster PASSMN Board of Directors election. By that, I mean...
2010-11-05
622 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. Gatot Subroto No.080A, RT.001, Cigobang, Gunungsimping, Kec. Cilacap Tengah, Kabupaten Cilacap, Jawa...
WA:08218154393 Jl. Jend. Ahmad Yani No.118, Sidakaya Dua, Sidakaya, Kec. Cilacap Sel., Kabupaten Cilacap,...
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