PASS Summit Report 3: Women in Technology Rock!
Last year I was honored to be a member of the Women in Technology (WIT) Panel at the PASS Summit....
2010-11-17
1,197 reads
Last year I was honored to be a member of the Women in Technology (WIT) Panel at the PASS Summit....
2010-11-17
1,197 reads
I needed to figure out how much space was required to maintain 7 days of event log entries for the...
2010-11-17
2,350 reads
SQLSaturday#59 is only a mere 3-days away! Today, I am bringing you a sponsor profile for our participating vendors, who...
2010-11-17
650 reads
One of the ideas I mentioned in my presentation on Comprehensive Professional Development was to set up some type of...
2010-11-17
1,809 reads
A quick look at the SQLServerCentral party at the 2010 PASS Summit, thanks to SQLChicken. It’s on UStream
Not great quality,...
2010-11-17
807 reads
In the spirit of T-SQL Tuesday, I hereby declare this Friday Un-SQL Friday. While T-SQL Tuesday is “…the SQL Server...
2010-11-17
609 reads
I received a note today about someone else that is plagiarizing content from SQLServerCentral. It’s a blog on Windows Live...
2010-11-16
1,109 reads
BACKUP LOG <db_name> WITH truncate_only command, used for clearing the log file, is deprecated in SQL Server 2008. So this post will explain option...
2010-11-16
1,673 reads
This is a problem we just solved, which was causing us to not be able to hit the remote registry...
2010-11-16
2,284 reads
I recently had a request from a client to come up with a routine to do a full compressed database...
2010-11-16
1,417 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