List Objects in a Filegroup in SQL Server 2005
I have tried hard to google a SQL query to find what objects exist in a specific filegroup, but in...
2009-01-16
12,552 reads
I have tried hard to google a SQL query to find what objects exist in a specific filegroup, but in...
2009-01-16
12,552 reads
We all have those things that happen at work that somehow turn into something other than expected, and sometimes in...
2009-01-15
651 reads
Apress sent me a free review copy, so I took a quick look through it at lunch. I've used full...
2009-01-15
605 reads
The 2009 devLINK Technical Conference will be held in Nashville, TN, August 13-15, 2009. This three-day conference provides technical content...
2009-01-15
474 reads
I was browsing through the new titles that are on Safari and saw some planning guides around Windows Server 2008...
2009-01-15
820 reads
It is strange how people react in different circumstances. Yesterday while going through the forums, there was an interesting post....
2009-01-15
444 reads
Yesterday I participated in my first BI SIG live meeting. This special interest group is led by Amy Lewis who...
2009-01-15
673 reads
If not, you should. Because autoplay being on means any time a removable data device, such as a USB stick,...
2009-01-15
749 reads
It seems like the benefits of being involved in PASS just never stopped. If you didn’t see the PASS newsletter...
2009-01-15
578 reads
Over the last six months or so, Pepsi has been running a PepsiStuff promotion on many of their products. They...
2009-01-15
646 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...
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...
Title pretty much says it all - can this be done? I've tried several...
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