SQL PASS Summit 2010 – Keynote Day 3
Today is the last official day of the SQL PASS 2010 summit, which also means the last day for live...
2010-11-11
750 reads
Today is the last official day of the SQL PASS 2010 summit, which also means the last day for live...
2010-11-11
750 reads
The SQL Rally pre-conference sessions were announced today, and congratulations to the winners. They are:
Business Intelligence Workshop - Patrick LeBlanc, Devin...
2010-11-11
862 reads
The end has come! We've been told for several years the vNext of SQL Server will no longer support DTS...
2010-11-11
3,503 reads
A few days ago I wrote about an election that was taking place (ok so it was a week ago at this point). That election was the SQLServerpedia Awards....
2010-11-10
4 reads
A few days ago I wrote about an election that was taking place (ok so it was a week ago...
2010-11-10
570 reads
I haven’t ever worried about this, but I had the need recently to check. I was looking a SQL Sentry’s...
2010-11-10
1,866 reads
I'm not one for automatically poo-pooing new ideas, new practices and new technology. Rather I like to take a measured...
2010-11-10
799 reads
Since Microsoft announced the existence of CTP1 of SQL Server Denali during Ted Kummert’s keynote address at PASS 2010 yesterday,...
2010-11-10
837 reads
Ever since I took myself voluntarily off company workstation support by installing Windows 7 on the corporate Dell E6400 laptop,...
2010-11-10
779 reads
This year, PASS is taking an extra step to help identify first time summit attendees. Most attendees are given ribbons...
2010-11-10
845 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