Outlook or LinkedIN
Funny the things you don’t think about until you hear someone doing it a different way. In this case it...
2009-12-28
566 reads
Funny the things you don’t think about until you hear someone doing it a different way. In this case it...
2009-12-28
566 reads
Nearly anytime you see the command DBCC FREEPROCCACHE mentioned in a blog post, magazine article or book, you get some...
2009-12-28
21,648 reads
It’s been almost 4 weeks without my laptop. I mailed it back to Toshiba and they received it on Dec...
2009-12-28
735 reads
It’s been almost 4 weeks without my laptop. I mailed it back to Toshiba and they received it on Dec...
2009-12-28
773 reads
Midlands PASS is a small user group. We average about 15 people coming to meetings, which is good for Columbia,...
2009-12-28
1,192 reads
I ran across Scratch in a PC World article a while back. It’s a free download from MIT, and is...
2009-12-28
619 reads
I recently had the opportunity to present, Nuggets Found by Mining the Default Trace, for SQLLunch. This was my first...
2009-12-28
345 reads
Someone submitted an article recently that walked through how to find the rules in your database, which columns they were...
2009-12-28
763 reads
Little info about System Resource Database in (SQL Server 2008/2005)
The fifth system database in both versions (SQL Server 2008 - 2005)...
2009-12-28
1,368 reads
These queries (which work on both SQL Server 2005 and 2008) are very handy if you want to know who...
2009-12-28
5,165 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:0821-4447-7715 Jl. Alternatif Cibubur RT.005/09. Kel. Harjamukti, Cibubur, Kec. Cimanggis, Kota Depok, Jawa Barat...
Comments posted to this topic are about the item SSRS Reminded Me of the...
I have a need to execute a stored procedure and return the results to...
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