Colorado Springs SQL Server User’s Group Meeting on Wednesday, May 19, 2010
The Colorado Springs SQL Server User’s Group is having their May meeting on May 19.
It will be held at the...
2010-05-07
701 reads
The Colorado Springs SQL Server User’s Group is having their May meeting on May 19.
It will be held at the...
2010-05-07
701 reads
The Denver SQL Server User’s Group will be having their May meeting next Thursday, May 20. As always, the meeting...
2010-05-07
502 reads
I had a question from a developer yesterday about how to calculate the difference between local time (on the database...
2010-05-06
1,514 reads
I think it is very important to be able to discover exactly what type of hardware is in an existing...
2010-05-05
1,006 reads
Since I am very interested in various PC-based hardware, and I make an effort to stay current on new developments,...
2010-05-04
870 reads
Well, I managed to finish up my series that featured a DMV query every day during the month of April....
2010-05-03
2,913 reads
The free 24 Hours of PASS event will be held on May 19-20, and includes 24 different one hour presentations...
2010-05-03
536 reads
The DMV for Day 30 is sys.dm_os_buffer_descriptors, which is described by BOL as:
Returns information about all the data pages that...
2010-04-30
3,264 reads
The DMV for Day 29 is sys.dm_exec_connections, which is described by BOL as:
Returns information about the connections established to this...
2010-04-29
2,915 reads
The DMV for Day 28 is sys.dm_io_pending_io_requests, which is described by BOL as:
Returns a row for each pending I/O request...
2010-04-28
1,265 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. Brawijaya No.8, Pocanan, Kec. Kota, Kota Kediri, Jawa Timur 64123
WA:08218154393 Jl. Jenderal Basuki Rahmat No.70-74, Klojen, Kec. Klojen, Kota Malang, Jawa Timur 65111
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